I want to span my footer the entire width of the page.
It doesn't sound like much but I'm spending a lot of time trying to fix it.
I have put margin 0 padding 0 to body and html.
My footer has a 100% width.
My footer is out of the container div and sits at the bottom of the page. It does not reach both sides of the page, left with a space between each side.
How do I fix this?
I have the following code in my css:
body {
font-family: Arial, Helvetica;
font-size: 14px;
margin: 0;
padding: 0;
}
html {
margin: 0;
padding: 0;
}
footer {
clear: both;
padding: 0;
background-color: #ff0;
width: 100%;
}