This question already has answers here:
Make a div fill the height of the remaining screen space
(33个答案)
在16天前关闭。
有两个div。我希望第二个div占据剩余空间。目前,它占据了100%的高度,但仅应占用剩余空间。
并且不要为任何一个元素设置高度
(33个答案)
在16天前关闭。
有两个div。我希望第二个div占据剩余空间。目前,它占据了100%的高度,但仅应占用剩余空间。
html, body {
height: 100%;
width: 100%;
}
.header {
background-color: blue;
color: red;
font-size: 50px;
}
.content {
background-color: red;
height: 100%;
width: 100%;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div class="header">Header</div>
<div class="content">
</div>
</body>
</html>
最佳答案
这是因为您将身体设置为100%
你可以尝试另一种方法
body {
height: 100%;
width: 100%;
display:grid;
grid-template-columns:1fr;
grid-template-rows:70px 1fr;
}
并且不要为任何一个元素设置高度
07-24 19:12