为什么类box
的div不是100%高度?
<!DOCTYPE html>
<html>
<head>
<style>
*, html {
padding: 0;
margin: 0;
height: 100%;
}
body {
min-height: 100%;
}
.box {
min-height: 100%;
background-color: brown;
}
</style>
</head>
<body>
<div class="box">
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
</div>
</body>
</html>
更新
<!DOCTYPE html>
<html>
<head>
<style>
html, body {
padding: 0;
margin: 0;
min-height: 100%;
}
</style>
</head>
<body>
<div class="box">
<p>This is a paragraph.</p>
</div>
</body>
</html>
为什么身体不是100%?我设置min-height: 100%;
!
答案 0 :(得分:4)
这就是你要找的东西:
您需要为body和html添加100%的高度。你的错误是将* 100%添加到*,这适用于每个元素(包括你的段落)
* {
padding: 0;
margin: 0;
}
html {
height: 100%;
}
body {
height: 100%;
}
.box {
height: 100%;
background-color: brown;
}
<!DOCTYPE html>
<html>
<head>
<style>
</style>
</head>
<body>
<div class="box">
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
</div>
</body>
</html>
答案 1 :(得分:1)
我总是遇到height: 100%
的问题。
尝试将您的身体设置为屏幕100:
body {
height: 100vh;
}
问候!
答案 2 :(得分:0)
因为你的身体不是100%:使用以下:
<!DOCTYPE html>
<html>
<head>
<style>
*, html {
padding: 0;
margin: 0;
min-height: 100%;
}
body {
min-height: 100%;
}
.box {
min-height: 100%;
background-color: brown;
}
</style>
</head>
<body class="box"> //will make body same as div
<div class="box">
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
</div>
</body>
</html>