使用Equal Height Columns with Cross-Browser 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;
}
有更复杂的演示页面,但我希望将第一个示例用于我的目的。为什么示例不起作用?
答案 0 :(得分: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;
}
答案 1 :(得分: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,如果这对你有帮助吗?