I have a DIV that I want to place at the bottom of a page. Here is the CSS code:
The problem is when the window size is reduced and the scrollbar is moved the DIV remains in the same spot rather than always remaining at the bottom of the page.
I need the DIV to always remain at the bottom of the page.
I’ve looked for a an example that is just using CSS and is compatible for both FF and IE but can’t find anything.
Can anyone help?
Thanks.
Code:
div.bottom
{
width: 190px;
height: 51px;
left: 575px;
position:absolute;
bottom:0px;
padding: 0px;
background-image:url([URL unfurl="true"]https://www.xxx.co.uk/bottom.png);[/URL]
background-repeat: no-repeat;
}
The problem is when the window size is reduced and the scrollbar is moved the DIV remains in the same spot rather than always remaining at the bottom of the page.
I need the DIV to always remain at the bottom of the page.
I’ve looked for a an example that is just using CSS and is compatible for both FF and IE but can’t find anything.
Can anyone help?
Thanks.