出于某种原因,#CCC 背景(100% 宽度)没有显示在我下面的代码中。你知道为什么吗?Tks
.wrap100pc {
width: 100%;
margin: auto;
background: #ccc;
}
#bottom-left {
float: left;
width: 490px;;
background: #5421c2;
height: 300px;
}
#bottom-right {
float: right;
width: 490px;;
background: #2ec4a6;
height: 300px;
}
.clear:after {
clear: both;
}
<div class="wrap100pc clear">
<div id="bottom-left">bottom-left</div>
<div id="bottom-right">bottom-right</div>
</div> <!-- End DIV Wrap100pc Clear-->