我有以下标记:
<li id="CN2787">
<img class="fav_star" src="images/fav.png">
<span>Text, text and more text</span>
</li>
我想要它,以便如果文本自动换行,就不会进入图像的“列”。我知道我可以用table
(我一直在做)做到这一点,但是由于这个原因这是行不通的。
我已经尝试了以下方法,但均未成功:
li span {width: 100px; margin-left: 20px}
.fav_star {width: 20px}
我也试过了float: right
。
谢谢。
编辑:我希望它看起来像这样:
IMG Text starts here and keeps going... and
wrap starts here.
不是这样的:
IMG Text starts here and keeps going... and
wrap starts in the space left for the image.