选项1:
对于环绕图像的文本,请使用以下基本 HTML:
<div id="header">
... contents go here ...
</div>
<div id="content">
<img src="sample.jpg" alt="" />
<p>Example content</p>
</div>
<div id="footer">
... contents go here ...
</div>
这个CSS:
#content img {
float: left;
}
选项 2:
对于两个不同的内容列,请使用以下 HTML:
<div id="header">
... contents go here ...
</div>
<div id="content">
<div class="col">
<img src="sample.jpg" alt="" />
</div>
<div class="col">
<p>Example content</p>
</div>
</div>
<div id="footer">
... contents go here ...
</div>
和 CSS:
#content .col {
float: left;
}
#footer {
clear: left;
}