一、圣杯(双飞翼)布局
要求:左右宽度固定,中间宽度自适应伸缩,并且中间先加载。
代码实现:(定位实现)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>布局</title>
<style>
body{
margin: 0;
}
.center{
height: 500px;
background: yellow;
margin: 0 200px;/* 挤开左右两侧的宽度 */
}
.left{
width: 200px;
height: 500px;
background: blue;
position: absolute;
top: 0;
left: 0;
}
.right{
width: 200px;
height: 500px;
background: red;
position: absolute;
top: 0;
right: 0;
}
</style>
</head>
<body>
<div class="center"></div>
<div class="left"></div>
<div class="right"></div>
</body>
</html>
二、等高布局
要求:内容撑开高度,左右两侧始终等高。
代码实现:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>登高布局</title>
<style>
body{
margin: 0;
}
.wrap{
width: 700px;
margin: 30px auto;
overflow: hidden;
}
.left{
width: 300px;
background: blue;
float: left;
padding-bottom: 1000px;
margin-bottom: -1000px;
}
.right{
width: 300px;
background: yellow;
float: left;
padding-bottom: 1000px;
margin-bottom: -1000px;
}
</style>
</head>
<body>
<div class="wrap">
<div class="left">
页面内容
页面内容
页面内容
页面内容
页面内容
页面内容
</div>
<div class="right">
页面内容
</div>
</div>
</body>
</html>
网友评论