【发布时间】:2017-07-20 12:32:28
【问题描述】:
我在 html 中有一个元素,我希望它覆盖所有页面。我在 CSS 中编写以下代码:
div{
width:100vw;
height:100vh;
}
但在firefox、chrome和opera中,页面是滚动的。我在IE和Microsoft edge中没有这个问题。
【问题讨论】:
标签: html css viewport-units
我在 html 中有一个元素,我希望它覆盖所有页面。我在 CSS 中编写以下代码:
div{
width:100vw;
height:100vh;
}
但在firefox、chrome和opera中,页面是滚动的。我在IE和Microsoft edge中没有这个问题。
【问题讨论】:
标签: html css viewport-units
用途:
body {
margin: 0;
}
body {
margin: 0;
}
div{
width:100vw;
height:100vh;
background-color:yellow;
}
<div></div>
【讨论】: