我正在寻找一种纯粹的 CSS 方法,将图像置于文本段落中居中,以便文本环绕在图像的两侧。
Ideely the image |-----| would be placed
before or after |-img-| the text within
the code structure|-----| and the text
would wrap around the image.
在以下位置找到了一个效果很好的答案: http://www.alistapart.com/articles/crosscolumn/
IE10 平台预览版据说有一个名为 定位浮动 的新功能,它似乎可以实现您正在寻找的功能。
不过现在,我认为你完蛋了:/
我认为这不可能:
<p> Text that goes here and image <img src="img.jpg"/> continues text</p>
据我所知,浏览器将
<p>
内容视为属于一行,因此当浏览器解析包含图像的p标签时,它会自动使该行与图像一样高。
也许 css3 是可能的......