两列高度相等

  • 本文关键字:高度 两列 html css
  • 更新时间 :
  • 英文 :


我有2列。一个具有动态高度。

我想将第二列调整到与第一列相同的高度。

问题:

如何将高度设置为div two 以具有与div one 相同的高度?

注意:寻找 css/html 解决方案 (NO JS

JSFIDDLE:

JsFiddle 示例

.HTML:

<div class="one"></div>
<div class="two"></div>
<div style="clear: both;">

.CSS:

.one {height: 300px; float: left; width: 70%;}
.two {height: 50px; float: left; width: 30%;}

只需使用这个修改后的 css 和 html 演示 这里

.HTML

<div class="wraper">
    <div class="one"></div>
    <div class="two"></div>
    <div style="clear: both;">
</div>

.CSS

body{
    width:100%;
}
.wraper{
    display:table;
    width:100%;
}
.one {height: 300px; background: #f00; display:table-cell; width: 70%;}
.two {height: 50px; background: #000;  display:table-cell; width: 30%;}

最新更新