现在的浏览器尺寸越来越多样化,我们想做一个适应全部浏览器的布局页面,就需要页面自适应,青岛星网今天跟大家分享:DIV+CSS两列布局左侧自动适应布局代码。
<div class="g-bd2 f-cb"> <div class="g-mn2"> <div class="g-mn2c"> <p>左侧自适应</p> </div> </div> <div class="g-sd2"> <p>右侧定宽</p> </div> </div>
/* 两列左侧自适应布局 */ .g-bd2{margin:0 0 10px;} .g-sd2{position:relative;float:right;width:230px;margin-left:-230px} .g-mn2{float:left;width:100%;;} .g-mn2c{margin-right:240px;} /* 预览辅助样式 */ body{margin:20px; font-size:16px;} p{height:150px;padding:10px;color:#fff;background:#ff0097; text-align:right;} .g-mn2c p{background:#4eb3b9;height:150px;}