I wish to float a DIV container at the bottom of the user's screen, it should always float when the user scrolls
Tried using:
position: fixed;
bottom: 0px;
This works fine for Firefox, but not for IE !!
Any ideas on how to get it working in IE
Update, used (referred from http://tagsoup.com/cookbook/css/fixed/bottom/):
<html>
<body>
<style>
body
{
margin: 0;
padding: 0 0 8em 0;
color: #000;
background: #fff;
font-size: 1em;
}
div#fixedbox
{
overflow: auto;
width: 100%;
height: 8em;
position: absolute;
bottom: 0;
left: 0;
color: #000;
background: #ddd;
}
div#content
{
padding: 1em;
}
@media screen
{
body>div#fixedbox
{
position: fixed;
}
}
</style>
<div id="content" style="width: 500px; height: 1200px">dfdf</div>
<div id="fixedbox"> The quick brown fox is stuck in this box. </div>
</body>
</html>
But the problem continues..
Thanks Akash