我的 HTML 在外部 div 中有 2 个 div:
<div class="outer">
<div class="col-left">
<p>Lorem Ipsum is simply dummy text of the...
</div>
<div class="col-right">Right</div>
<div class="clear"></div>
</div>
CSS是:
.outer {
border: 1px solid black;
}
.col-left {
float: left;
background: cyan;
width: 80%
height: 100%;
}
.col-right {
float: left;
width: 15%;
background: yellow;
height: 100%;
}
.clear {
clear: both;
}
只有当我在 .outer 类上设置 px 高度时, height: 100% 才会生效,但是,我遇到了不应该固定高度的情况。
如何在不在其父级中指定固定高度的情况下使用 100% 高度?
我将使用莱恩在评论中写的内容。