假設有 -如何讓文字環繞圖像?
CSS -
img {
display: inline-block;
}
div {
display: inline-block;
vertical-align: top;
height: 150px;
width: 150px;
}
HTML -
<div>
<img src="img/koala.jpg" />
wrap the image wrap the image wrap the image wrap the image wrap the image wrap the image wrap the image wrap the image wrap the image wrap the image wrap the image wrap the image wrap the image
</div>
我想<div></div>
之間的文本將根據被限制大小在 -
div {
height: 150px;
width: 150px;
}
,敷形象之接近,
的東西看起來像 -
這裏jsFiddle我做了這麼遠。
上面的jsFiddle只是寫在圖像的頂部,然後寫下它的下面的文本的其餘部分。