文章目录
一、左右宽度固定,中间宽度自适应
1. 使用浮动布局
(1)左侧元素与右侧元素优先渲染,分别向左和向右浮动
(2)中间元素在文档流的最后渲染,则会自动插入到左右两列元素的中间
2. 使用弹性布局
父元素开启flex,中间设置flex:1
3. 使用绝对定位
二、实现上下宽度固定,中间自适应
1. 绝对定位
<head>
<meta charset="utf-8">
<style type="text/css">
body {
height: 100%;
width: 100%;
}
.box>div {
position: absolute;
width: 100%;
}
.top {
top: 0;
height: 200px;
background-color: antiquewhite;
}
.bottom {
bottom: 0;
height: 200px;
background-color: aqua;
}
.center {
top: 200px;
bottom: 200px;
background-color: gold;
}
</style>
</head>
<body>
<div class="box">
<div class="top"></div>
<div class="center"></div>
<div class="bottom"></div>
</div>
</body>
2. flex弹性布局
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style type="text/css">
body {
height: 100%;
width: 100%;
}
.box {
display: flex;
width: 100%;
}
.top {
height: 200px;
background-color: antiquewhite;
}
.bottom {
height: 200px;
background-color: aqua;
}
.center {
flex: 1;
background-color: gold;
}
</style>
</head>
<body>
<div class="box">
<div class="top"></div>
<div class="center"></div>
<div class="bottom"></div>
</div>
</body>
</html>