image.png
<!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>三栏布局, 中间宽度自适应</title>
<style>
body,.box {
width: 100vw;
height: 100vh;
display: flex;
padding: 0;
margin: 0;
}
.box__left {
width: 200px;
background:slategrey;
}
.box__right {
width: 200px;
background:seagreen;
}
.box__middle {
width: 100%;
flex: 1;
background:salmon;
}
.box__left__top {
height: 48px;
background:thistle;
}
.box__left__bottom {
height: 48px;
background:thistle;
}
.box__left__middle {
height: calc(100% - 96px);
background:wheat;
overflow: scroll;
}
</style>
</head>
<body>
<div class="box">
<div class="box__left">
<div class="box__left__top"></div>
<div class="box__left__middle">
这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本
</div>
<div class="box__left__bottom"></div>
</div>
<div class="box__middle"></div>
<div class="box__right"></div>
</div>
</body>
</html>
网友评论