浮游物將清除,物品剛剛堆積並向左浮動。我試圖清除圖像和文章,但無濟於事。爲什麼我的花車不能正常工作?
代碼:
#Bottom_row {
clear: both;
height: 600px;
}
#Bottom_Column > img {
clear: both;
float: left;
}
.Article_Sec {
float: left;
clear: both;
width: 25%;
}
<section id="Bottom_row">
<img src="Images/pic_sure.png">
<article class="Article_Sec">
<div class="Content_area">
<h3 class="category">Apps</h3>
<p class="latest">5 Tips to make your laptop run like the day you bought it!</p>
</div>
</article>
<article class="Article_Sec">
<div class="Content_area">
<h3 class="category">Apps</h3>
<p class="latest">5 Tips to make your laptop run like the day you bought it!</p>
</div>
</article>
<article class="Article_Sec">
<div class="Content_area">
<h3 class="category">Apps</h3>
<p class="latest">5 Tips to make your laptop run like the day you bought it!</p>
</div>
</article>
<article class="Article_Sec">
<div class="Content_area">
<h3 class="category">Apps</h3>
<p class="latest">5 Tips to make your laptop run like the day you bought it!</p>
</div>
</article>
</section>
感謝這個實際工作,除了文章被推到圖片的旁邊,並且沒有破壞圖片 – Chris
@Chris檢查我的編輯。 – ketan
它仍然無法正常工作,所有的文章最終與圖像內聯。我想要圖像下的文章 – Chris