有没有办法清除图像的底部?我试过margin-bottom: 100%
, 和padding-bottom: 100%
,但它不起作用,因为我下面有更多的 div 可以清除所有内容。
我只想清除包含 div 的图像的内容。
HTML
<div class="contentpart">
<p>
<a href="http://www.s1waterbike.ro/wp-content/uploads/2013/07/contact-feat1.jpg">
<img class="alignnone size-medium wp-image-88" alt="contact-feat" src="http://www.s1waterbike.ro/wp-content/uploads/2013/07/contact-feat1-300x200.jpg" height="200" width="300">
</a>
</p>
the text....
</div>
<div class="contentpart">
The text.....
</div>
CSS
.contentpart img {
float: left;
clear: bottom;
}
解决方案的外观示例