Height percentage not working in CSS

后端 未结 4 2086
礼貌的吻别
礼貌的吻别 2020-11-28 15:46

I am trying to use height property using percentages, but it doesn\'t work. I want to use percentage so it looks fine in any resolution.

4条回答
  •  孤独总比滥情好
    2020-11-28 16:19

    When you are using % for width, or height, the 1st question you should ask is that 80% of what? So you also need to apply height to the parent element, so assuming that this element of yours is inside the body tag, you need to use this in your CSS

    html, body {
       height: 100%;
    }
    

    So now your div element will be 80% of 100%

    Demo

    Side Note: Also when you are dealing with absolute positioned elements, you may come across a scenario where your div won't exceed the current viewport height, so in that case you need to have min-height

提交回复
热议问题