Scrollbar without fixed height/Dynamic height with scrollbar

后端 未结 10 1544
没有蜡笔的小新
没有蜡笔的小新 2020-12-02 22:24

I have this HTML structure:

Dynamic height without scrollbar

10条回答
  •  没有蜡笔的小新
    2020-12-02 22:54

    With display grid you can dynamically adjust height of each section.

    #body{
      display:grid;
      grid-template-rows:1fr 1fr 1fr;
    }
    

    Add the above code and you will get desired results.

    Sometimes when many levels of grids are involved css wont restrict your #content to 1fr. In such scenarios use:

    #content{
      max-height:100%;
    }
    

提交回复
热议问题