Prevent child div from overflowing parent div

前端 未结 2 399
遥遥无期
遥遥无期 2020-12-17 14:05

I have a parent div containing a header section and a body section. The parent div has a maximum height, but no minimum height.

See this example: https://jsfiddle.ne

2条回答
  •  一生所求
    2020-12-17 15:05

    i updated your jsfiddle check it out

    jsfiddle

    #cont {
      padding: 5px;
      background-color: red;
      max-height: 150px;
      max-width: 50%;
      overflow-y: scroll;
    }
    #body {
      background-color: blue;
    
    }
    #head {
      background-color: green;
    }
    

提交回复
热议问题