日期:2014-01-07  浏览次数:21044 次

网页制造aiyiweb文章简介:CSS两列规划,右侧固定,左侧自顺应宽度.

CSS两列规划,右侧固定,左侧自顺应宽度
<div style="width:90%; margin:0 auto;">
   <div style="width:200px; float:right;">这是右侧的内容</div>
   <div style=" margin-right:210px;">这是左侧的内容,自顺应宽度</div>
</div>
CSS两列规划,左侧固定,右侧自顺应宽度
<div style="width:90%; margin:0 auto;">
   <div style="width:150px; float:left;>这是左侧的内容 固定宽度</div>
   <div style=" margin-left:160px;>两头内容,自顺应宽度</div>
</div>
CSS三列规划,左右宽度固定,两头自顺应宽度
<div style="width:90%; margin:0 auto;">
   <div style="width:200px; float:right; >这是右侧的内容 固定宽度</div>
   <div style="width:150px; float:left; >这是左侧的内容 固定宽度</div>
   <div style=" margin-left:160px;margin-right:210px;>两头内容,自顺应宽度</div>
</div>
 
三列等高规划
<style>
*{ margin:0; padding:0}
#content{overflow:hidden}
#content #left,#content #center,#content #right{margin-bottom:-10000px;padding-bottom:10000px;width:300px;float:left;}
#content #left{background:#f00;}
#content #center{background:#0ff}
#content #right{background:#f0f}
</style>
<div id="content">
 <p id="left">left<br />left<br />left<br />left<br />left<br />left</p>
 <p id="center">center</p>
 <p id="right">right</p>
</div>