How to access the real 100vh on iOS in CSS

后端 未结 2 545
不思量自难忘°
不思量自难忘° 2021-01-16 06:59

This is a self Q&A

If you\'ve ever tried to use 100vh in CSS on iOS you will have found that it isn\'t actually 100vh when the brow

2条回答
  •  旧时难觅i
    2021-01-16 07:55

    CSS Grid is the solution.

    .grid-container {
      height: 100vh;
      grid-template-columns: 1fr;
      grid-template-rows: 30px 1fr 30px
    }
    

提交回复
热议问题