Ich habe das folgende Markup:
<li id="CN2787">
<img class="fav_star" src="images/fav.png">
<span>Text, text and more text</span>
</li>
Ich möchte, dass der Text, wenn er umbrochen wird, nicht in die 'Spalte' für das Bild gelangt. Ich weiß, ich kann es mit einem machentable
(was ich gemacht habe), aber das ist aus diesem Grund nicht praktikabel .
Ich habe folgendes ohne Erfolg versucht:
li span {width: 100px; margin-left: 20px}
.fav_star {width: 20px}
Ich habe es auch versucht float: right
.
Vielen Dank.
EDIT: Ich möchte, dass es so aussieht:
IMG Text starts here and keeps going... and
wrap starts here.
So nicht:
IMG Text starts here and keeps going... and
wrap starts in the space left for the image.
white-space: nowrap;
in li span {...}
, aber ich den Eindruck, dass Sie etwas versuchen , anderes zu tun