Div background-color does not extend to child divs

前端 未结 5 1727
不知归路
不知归路 2021-01-28 12:21

I have a container div with several child divs within this. The parent div has a background-color, however, this doesn\'t seem to be extending to the last couple of child divs.

5条回答
  •  生来不讨喜
    2021-01-28 13:11

    Either in your CSS, or inline, white the code as:

    #adiv {
     background-color: #F8F8F8;
    }
    
    #anotherdiv {
     background-color: #F8F8F8;
    }
    

    In HTML, make sure you call each div to their respective CSS.

提交回复
热议问题