有两个 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>
鸿蒙传说
相关分类