绝对定位 三列布局
Posted zhangyongxi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了绝对定位 三列布局相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.main{position:relative;padding:0 210px;}
.left{position:absolute;left:0;top:0;width:200px;height:500px;background-color:red}
.right{position:absolute;right:0;top:0;width:200px;height:500px;background-color:red}
.middle{height:500px;background-color:#000}
</style>
</head>
<body>
<div class="main">
<div class="left"></div>
<div class="middle"></div>
<div class="right"></div>
</div>
</body>
</html>
以上是关于绝对定位 三列布局的主要内容,如果未能解决你的问题,请参考以下文章