有人可以告诉我为什么绝对定位的红色 DIV 没有填满整个页面以及如何解决它?它只是填充视口。我已经看到了很多相同的问题,但是要么这个人的代码太乱了,难怪它不起作用,要么解决方案不起作用。
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
<div style="position: absolute; z-index: 999; background-color: #f00; left: 0px; top: 0px; right: 0px; bottom: 0px;"></div>