How to make a div height to fill available space

前端 未结 8 949
一整个雨季
一整个雨季 2021-02-14 11:04

I have a 3 column layout with some details below the columns.

\"enter

You will not

8条回答
  •  星月不相逢
    2021-02-14 11:30

    The CSS solution is to style the outer container with the background color, this is called a fake (faux) bakcground.

    Like this:

    #iconsHolder {
        background-color: #DDD;
    }
    

    This method (in this case at least) guarantees the background is the same for all.

提交回复
热议问题