0

假设我有这个 html 代码:

<img src="pic.jpg"/>
<h1>Title!</h1>
<h5>A subtext</h5>
<hr/>

什么css代码会给我以下结果?

css_example

4

1 回答 1

1
<div id="container">

<div class="content_left">
  <h1>Title!</h1>
  <h5>A subtext</h5>
  <hr/>
</div>
<div class="content_right">
  <img src="pic.jpg"/>
</div>
<div>

CSS:

#container {
  width: yourwidth;
  height: yourheight;
}

.content_right {
  float:right;
  width: width of image;
}
.content_left {
  float:left;
  width: width of text;
}

当然,这只是可以做到这一点的众多方法中的一种......

于 2012-08-14T09:02:55.167 回答