画像といくつかのtxtが入ったボックスがあり、txtを画像に対して水平にしたいです。これはかなり簡単な質問かもしれませんが、インターウェブで良い答えを見つけることができないようです。助けてくれてありがとう。
<div id='container'>
<img src='someimage.jpg'/>
<p>some text</p>
</div>
次に、CSSのfloatプロパティを見てください。
<div id='container'>
<img src='someimage.jpg' style='float: left;'/>
<p>some text (that will now wrap around the image</p>
</div>