我有 2 列。一种具有动态高度。
我想将第二列调整到与第一列相同的高度。
问题:
如何将高度设置为 div 与 divtwo
具有相同的高度one
?
注意:寻找 css/html 解决方案(无 JS)
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%;}