0
Please help.
I used background-color on CSS for the footer, but why it is not on the images below if the images are inside the footer? https://code.sololearn.com/WGMpmxy1soGg/#html
2 Respostas
+ 5
You have to put some height on footer. Use this and check again.
footer{
background-color:#D6DAD4;
border:5px none silver;
border-radius: 15px;
height:100px;
}
+ 2
Thank you!!