我有一个带有图像和一些txt的框,我希望txt与图像水平。我知道这可能是一个非常简单的问题,但我似乎无法在互联网上找到一个好的答案。谢谢你的帮助。
<div id='container'>
<img src='someimage.jpg'/>
<p>some text</p>
</div>
答案 0 :(得分:18)
看一下CSS的float属性,例如:
<div id='container'>
<img src='someimage.jpg' style='float: left;'/>
<p>some text (that will now wrap around the image</p>
</div>