css使用position: fixed让height:100%起作用

时间:2018-11-19
本文章向大家介绍css使用position: fixed让height:100%起作用,需要的朋友可以参考一下

html:

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

css:

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

1