三栏布局:听到三栏布局,感觉好高大上的样子。想当初初学CSS的时候.
反正我听不懂,你说啥都很厉害
接下来:
然后:
总之,多逛逛正规的技术论坛,你会发现自己都不能接受自己那么菜。
简单来说: 就是网页分成三块,中间自适应,左右两边固定
应用场景:视频播放进度条,两边固定,中间进度条根据电子屏幕自适应长度。
弹性布局(移动端使用弹性布局真是非常方便,可以自己了解一下)来实现:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<style>
.main {
display: flex;
justify-content: center;
height: 300px;
}
.left {
width: 200px;
height: 100%;
background-color: aquamarine;
}
.content {
flex: 1;
background-color: blueviolet;
}
.right {
width: 300px;
height: 100%;
background-color: yellowgreen;
}
</style>
<body>
<div class="main">
<div class="left"></div>
<div class="content"></div>
<div class="right"></div>
</div>
</body>
</html>
定位的方式:
<style>
.left {
width: 200px;
background-color: red;
left: 0;
height: 200px;
position: absolute;
}
.content {
background-color: yellow;
left: 200px;
right: 200px;
height: 200px;
position: absolute;
}
.right {
width: 200px;
background-color: green;
right: 0;
height: 200px;
position: absolute;
}
</style>
<body>
<div class="left"></div>
<div class="content"></div>
<div class="right"></div>
</body>