首页 > 开发 > CSS > 正文

三列宽度自适应结构中的的DIV写法

2024-07-11 09:00:43
字体:
来源:转载
供稿:网友

 适用于左右栏是窄幅,中栏为主要内容显示,让其宽度自适应。

CSS

#main{
width:760px;
margin:0 auto;
}
.left{
width:100px;
float:left;
}
.right{
width:120px;
float:right;
}
.center{
margin:0 120px 0 100px;
width:auto;
}
.clear{clear: both;}

HTML

<!--注意:center这个DIV的位置-->
<div id="main">
<div class="left"></div>
<div class="right"></div>
<div class="center"></div>
<div class="clear"></div>
</div>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表