display:table-cell实现兼容性的两栏自适应布局

网站建设

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />
<style type=”text/css”>
.box{width:60%; margin:60px auto 0; padding:20px; background:#f5f5f5;}
.box img{float:left;}
.content{display:table-cell; *display:inline-block;}
</style>
<title>display:table-cell实现兼容性的两栏自适应布局</title>
</head>

<body>
<div class=”box”>
   <a “#prettyGirl” ><img border=”0″ src=”http://www.xieguang133.com/wp-content/uploads/baidu_pic/other_site/image_zhangxinxu_mm2.jpg” /></a>
   <div class=”content”>
   <p><a “#prettyGirl”>大美女一枚</a> 来自上海</p>
   <p class=”mt5″>签名:想找个保鲜盒把你给我的那些感动都装起来。当你让我伤心的时候就拿出来回味一下。</p>
   <p class=”mt5″>微博:坐在办公室,只听轰隆隆几声巨响,晴天也能打雷吗?原来街对面的芭莎咖啡厅被炸成了两截。这定点爆破也太失败了,也不清下场,把路过的汽车震得灰头土脸,愣在路中央不知如何是好。其次,房子只炸了一半,另一半屹立不倒,是炸药太水还是房子质量太好?</p>
   </div>
</body>
</html>


继续阅读