比方說,我們有一個非常簡單的場景浮動元素的CSS背景色
<div class="content">
<div class="left">
<p>some content</p>
</div>
<div class="right">
<p>some content</p>
</div>
</div>
<div class="content">
<div class="left">
<p>some content</p>
</div>
<div class="right">
<p>some content</p>
</div>
</div>
這是造型:
.content {
width: 960px;
height: auto;
margin: 0 auto;
background: red;
clear: both;
}
.left {
float: left;
height: 300px;
background: green;
}
.right {
float: right;
background: yellow;
}
而且事情是什麼?當我將內容添加到它應該拉下父母的div,我們需要看到紅色的背景......事情是,我看不到紅色背景填滿所有的高度。
任何想法???
非常感謝。
你錯過了很多雙引號。先檢查他們。 – JoelFernandes
已經修好... – andresmijares25