Reputation: 1
I have made HTML and CSS files to make a website for college
the css code on the other tab is:
footer{
width: 100%;
background-color: 000066;
padding: 60px 0px;
}
So I just want to style my footer, for now
Does anyone know the reason this is happening as I've tried a few different combinations?? Thanks, everyone in advance
Image of HTML:
Upvotes: 0
Views: 28
Reputation: 95
<div class="wrapper">
...
</div> <!-- please close div wrapper class tag -->
you have wrapped the ul tag with div class but at the end the div tag is not closed.
Upvotes: 1
Reputation: 66
Close the div
element inside the footer with class of wrapper.
Upvotes: 0