为什么沾满剩余部分会想到用 100vh>??
<!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>
*{
margin: 0;
padding: 0;
}
/* 补充代码 */
.header{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 60px;
background-color: yellow;
}
.container{
padding: 60px 0 60px 0;
overflow: hidden;
}
.container .left{
float: left;
width: 30%;
height: 100vh;
background-color: red;
}
.container .right{
float: left;
width: 70%;
height: 100vh;
background-color: pink;
}
.bottom{
position:fixed;
left: 0;
bottom: 0;
width: 100%;
height: 60px;
background-color: yellow;
}
</style>
</head>
<body>
<div class="header">
头部
</div>
<div class="container">
<div class="left">左侧菜单</div>
<div class="right">右侧内容</div>
</div>
<div class="bottom">
尾部
</div>
</body>
</html>
17
收起
正在回答 回答被采纳积分+1
1回答
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星