每次我尝试用 CSS 做一些看似简单的事情时,它都不起作用。
我有一个包含460x160图像的 content div。我所要做的就是将图像放置在右下角,然后将文本包裹在其周围。
<div id="contents">
<img src="..." />
text text text text text text ...
</div>
所以我想让它看起来像:
------------------
| text text text |
| text text text |
| text text -----|
| text text | |
------------------
用左上角或者右上角的图片来做这件事是很容易的:
#contents img { float:right; }
------------------
| text text | |
| text text -----|
| text text text |
| text text text |
------------------
现在我该怎么把它推到底部呢? 到目前为止我想到的最好的是:
#contents img { float:right; margin-top: 90%} // really needs to be 100%-160px
------------------
| text text |
| text text |
| text text -----|
| text text | |
------------------
在这种情况下,文本不会打印在边距中,因此图像上方有空白。
#contents { position:relative; }
#contents img { position:absolute; right:0; bottom:0; }
-or-
// move the img tag under the text in the html and:
#contents img { float:right; margin-top:-160; }
------------------
| text text text |
| text text text |
| text text -----|
| text text | te |
------------------
在这种情况下,文本将打印在图像之上或图像之下。
那么... 我该怎么做呢?