为什么 body 设置 overflow: hidden 无效?
html {
background: #fff;
}
body {
height: 200px;
background: #ccc;
overflow: hidden;
}
.a {
height: 300px;
width: 200px;
background: pink;
}
<body>
<div class="a"></div>
</body>
html {
background: #fff;
}
body {
height: 200px;
background: #ccc;
overflow: hidden;
}
.a {
height: 300px;
width: 200px;
background: pink;
}
<body>
<div class="a"></div>
</body>
3 回答5.2k 阅读✓ 已解决
5 回答2.1k 阅读
2 回答2k 阅读✓ 已解决
1 回答3.1k 阅读✓ 已解决
3 回答2.5k 阅读
2 回答1.1k 阅读✓ 已解决
2 回答2.2k 阅读
搬运工
From the CSS 2.2 spec for the overflow property
That is, overflow:hidden set on the body element, is moved to apply to the viewport instead. To avoid that happening, you can set the <html> element to not be overflow:visible.
i.e. add html { overflow:auto; } to the CSS.
https://stackoverflow.com/que...