gpt4 book ai didi

javascript - 添加元素时向正文添加垂直滚动以占据剩余空间

转载 作者:行者123 更新时间:2023-12-02 21:01:23 25 4
gpt4 key购买 nike

有两个 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>

最佳答案

发生这种情况是因为你将 body 设置为 100%

你可以尝试另一种方法

  body {
height: 100%;
width: 100%;
display:grid;
grid-template-columns:1fr;
grid-template-rows:70px 1fr;
}

并且不要设置任一元素的高度

关于javascript - 添加元素时向正文添加垂直滚动以占据剩余空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61344890/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com