这篇文章给大家分享的是有关如何使用CSS实现三栏布局的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
CSS 实现三栏布局(左右固定200px,中间自适应)
双飞翼布局:都左浮动,中间包一个盒子,padding 隔开两侧宽度。左右两侧都有 margin-left.
<style>
body {
min-width: 550px;
}
.col {
float: left;
}
#main {
width: 100%;
height: 400px;
background-color: #ccc;
}
#main-wrap {
margin: 0 200px 0 200px;
}
#left {
width: 200px;
height: 400px;
margin-left: -100%;
background-color: red;
}
#right {
width: 200px;
height: 400px;
margin-left: -200px;
background-color: #ff0000;
}
</style>
<body>
<div id="container">
<div id="main" class="col">
<div id="main-wrap"></div>
</div>
<div id="left" class="col"></div>
<div id="right"class="col"></div>
</div>
</body>
圣杯布局:中间不包盒子但还是有 padding。
<style>
#container{
padding: 0 190px 0 190px;
}
.col{
position: relative;
float: left;
}
#main{
width: 100%;
height: 400px;
background-color: #ddd;
}
#left{
width: 190px;
height: 400px;
background-color:red;
margin-left: -100%;
left: -190px;
}
#right{
width: 190px;
height: 400px;
background-color: yellow;
margin-left: -190px;
right: -190px;
}
</style>
<body>
<div id="container">
<div id="main" class="col"></div>
<div id="left" class="col"></div>
<div id="right"class="col"></div>
</div>
</body>
拓展 左右布局
<style>
html,body{
height: 100%;
}
.left{
width: 256px;
height: 100%;
background-color: #ddd;
float: left;
}
.right{
width: 100%;
height: 100%;
margin-left: 256px;
background-color: rgb(230, 48, 48);
}
</style>
<body>
<div class="left"></div>
<div class="right"></div>
</body>
感谢各位的阅读!关于“如何使用CSS实现三栏布局”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!