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.
可能重复: CSS:在右下角的 div 周围环绕文本?
是否可以有 2 层,一层带有文本,一层带有图像,并且文本环绕图像?
给 div2 afloat: right
float: right
<div id="div1"> <div id="div2"> </div> </div> #div2{float:right;}
不需要添加额外的 div 来放置图像。
HTML
<div><img src="" /> Content here </div>
CSS
div{width:450px; text-align:justify} div img{float:right; margin-left:10px}
演示