当前位置: 代码迷 >> Web前端 >> div格局整理
  详细解决方案

div格局整理

热度:157   发布时间:2012-07-26 12:01:08.0
div布局整理
======================上下两行四个区域布局=====================
其中:
div{
	border:0px;
	margin:0px;
}

<div style="clear:both;width:100%;">
   <div style="width:50%;float:left;">left1</div>
   <div style="width:50%;float:right;">right1</div>
</div>
<div style="clear:both;width:100%;">
   <div style="width:50%;float:left;">left2</div>
   <div style="width:50%;float:right;">right2</div>
</div>

  相关解决方案