css三列布局
Posted David1314
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css三列布局相关的知识,希望对你有一定的参考价值。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style>
body{
margin:0;
padding:0;
font-size:30px;
font-weight:bold
}
div{
text-align:center;
line-height: 50px
}
.left{
width:200px;
height:600px;
background: #ccc;
position: absolute;
left:0px;
top:0px;
}
.main{
margin:0 310px 0 210px;
height:600px;
background: #9cf;
}
.right{
width:300px;
height:600px;
background:#fcc;
position: absolute;
right: 0px;
top:0px;
}
</style>
</head>
<body>
<div class="left">200px</div>
<div class="main">lerm</div>
<div class="right">300px</div>
</doby>
</html>
以上是关于css三列布局的主要内容,如果未能解决你的问题,请参考以下文章