When trying to add a background color to a div with images, I can only achieve it by including the footer within the div, which is not ideal. I want the background-color to be applied only to the section inside the div.
/* CSS */
div#gallery_contain {
width: 850px;
margin: 0 auto;
padding: 0 5%;
background-color: #1a75ff;
}
footer {
clear: both;
text-align: center;
}
<div id="gallery_contain">
<section>
</section>
</div>