level 2
代码如下:
<body>
<div class="body1">
while($row=mysql_fetch_array($p_sql)){
echo "<a class='a1' href='$row[url]' target='_blank'>
<div class='name'>
<img src='img/12.jpg'>
<dl class='dl1'>
<dt class='title1'>$row[title]</dt>
<dt class='address1'>$row[address]</dt>
</dl>
<div class='empty'></div>
</div>
</a>";
}
</body>
css:
.name{max-width: 460px;background-color: aqua;margin: 5px;}
.dl1{float: left;margin:0px;padding-left: 5px;max-width: 75%;}
.title1{font-size: 1.5em;font-weight: bolder; word-wrap:break-word;}
.address1{word-wrap:break-word;font-size: 1em;}
.name img{margin:0px;max-width:15%;float: left;}
.empty{clear: both;height:0;line-height: 0px;}
.a1{display:block;max-width: 460px;}
.body1{background-color: chartreuse;position:relative;
max-width:460px;margin: 10px auto;border:solid 3px #ccc;}
用rem设定字体大小也没有用
2016年01月19日 09点01分

