Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のような番号付きリストがあります。
<ol> <li>some text <img src="..." /></li> </ol>
テキストの右側の画像は、テキストの右側ではなく、テキストの下にあります。span と float:left を試しましたが、うまくいきませんでした。画像をテキストの右側に配置するにはどうすればよいですか?
ありがとう!
テキストと画像にfloatingを使用し、画像とテキストdivの幅を指定します。
<ol> <li> <div style="float:left;width:200px;" >your text here..</div> <div style="float:right;width:100px;"><img src="abc.jpg" /></div> <div style="clear:both;"></div> </li>
liの幅が最小300pxであると仮定します