CSS background stretches to fill height in iOS but there is white space on scroll

前端 未结 7 1599
暗喜
暗喜 2021-02-06 18:57

this CSS gets my background to fill 100% of the screen height in iOS but there is a minor problem - when you scroll down there is initially white space, then when you release yo

7条回答
  •  南方客
    南方客 (楼主)
    2021-02-06 19:19

    Try using viewport units on the background

    background-size: 100vw 100vh;

    But first add viewport meta tag to your page:

    NOTE:

    The vw and vh units are not fully supported, check out the supported browsers here.

提交回复
热议问题