DIV height set as percentage of screen?

前端 未结 5 1425
夕颜
夕颜 2020-12-08 01:24

I\'m looking to set a parent DIV as 70% of the full 100% screen height. I\'ve set the following CSS but it doesn\'t seem to do anything:

body {
font-family:          


        
5条回答
  •  不知归路
    2020-12-08 02:25

    Try using Viewport Height

    div {
        height:100vh; 
    }
    

    It is already discussed here in detail

提交回复
热议问题