Scrollbar without fixed height/Dynamic height with scrollbar

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

I have this HTML structure:

Dynamic height without scrollbar

10条回答
  •  误落风尘
    2020-12-02 22:36

    Use this:

    #head {
        border: green solid 1px;
        height:auto;
    }    
    #content{
                border: red solid 1px;
                overflow-y: scroll;
                height:150px;       
            }
    

提交回复
热议问题