- 15,799
Mozilla seems to push the contents of a div layers down 15px. This is annoying as I have a Container div and I want create a footer at the bottom. IE will display it correctly, whilst Mozilla pushes it outside the container itself.
Here's the CSS code, and as you can see it's meant to be positioned 2px from the bottom.
Here's what I'm talking about. Anyway of working around this?
BTW - That isn't the footer I was talking about, it's just an example.
Here's the CSS code, and as you can see it's meant to be positioned 2px from the bottom.
Code:
div#Footer {
position: absolute;
left: 12px;
bottom: 2px;
height: 15px;
width: 662px;
}
Here's what I'm talking about. Anyway of working around this?

BTW - That isn't the footer I was talking about, it's just an example.