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

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

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


  
14条回答
  •  無奈伤痛
    2020-12-16 19:44

    i use the overflow:hidden it work properly.

    .bu {
        overflow: hidden;
        background-color:blue;
    }

提交回复
热议问题