how to size a div's height to its container height, using CSS?

后端 未结 14 2120
太阳男子
太阳男子 2020-12-16 19:34

How to size a div\'s height to its container height, using CSS ?


  
14条回答
  •  粉色の甜心
    2020-12-16 19:41

    try adding this to the div to be resized

    .layout-fill {
        margin: 0;
        width: 100%;
        min-height: 100%;
        height: 100%;
    }

提交回复
热议问题