-1

在跨浏览器 CSS示例中使用等高列

HTML:

<div id="container1">
  <div id="col1">Column 1<br/>2</div>
    <div id="col2">Column 2</div>
    <div id="col3">Column 3</div>
</div>

CSS:

#container1 {
    float:left;
    width:100%;
}
#col1 {
    float:left;
    width:30%;
    background:red;
}
#col2 {
    float:left;
    width:40%;
    background:yellow;
}
#col3 {
    float:left;
    width:30%;
    background:green;
}

有更复杂的演示页面,但我希望将第一个示例用于我的目的。为什么示例不起作用?

http://jsfiddle.net/YryJM/2/

4

2 回答 2

1

做等高列的最简单方法是使用display: table.

#container1 {
    display: table;
    width:100%;
}

#col1, #col2, #col3 {
  display: table-cell;
}
#col1 {
    width:30%;
    background:red;
}
#col2 {
    width:40%;
    background:yellow;
}
#col3 {
    width:30%;
    background:green;
}

http://jsfiddle.net/YryJM/3/

于 2013-01-08T17:27:10.303 回答
0

也许这会起作用?通过设置容器 div 的固定高度,然后将 col div 设置为 100%?

#container1 {
float:left;
width:100%;
height:50px;
}
#col1 {
float:left;
width:30%;
background:red;
height:100%;
 }
#col2 {
float:left;
width:40%;
background:yellow;
height:100%;
}
#col3 {
float:left;
width:30%;
background:green;
height:100%;
}

例如 http://jsfiddle.net/squinny/dps4f/1/

idk这是否对您有帮助?

于 2013-01-08T17:29:06.317 回答