<style type="text/css">
.floatright {
float: right;
width: 100px;
margin: 0 0 10px 10px;
}
</style>
<div class="floatright">
<img class="floatright" src="computer.png" alt="" width="100" height="100" /><br />
Caption here
</div>
<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, </p>
问题:
如果我删除这一行: width: 100px;
,文本Caption here
将不会与 img 的左边缘对齐,为什么?