我有以下标记:
<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.