让height: 100%生效

html:

<body>
    <div class="box"></div>
</body>

css:

.box{
    position: fixed;// 使用fixed定位
    width: 100%;
    height: 100%;
    background: orange;
  }

1

猜你喜欢

转载自www.cnblogs.com/Skate0rDie/p/9981751.html