I am trying to place my div with some notes in the bottom right position of the screen which will be displayed all time.
I used following css for it:
#foo
{
position: fixed;
bottom: 0;
right: 0;
}
It works fine with Chrome 3 and Firefox 3.6 but IE8 sucks...
what can be a suitable solution for it?
position:fixed;. So what you do is have a wrapper div that hasposition:relative;filling the whole screen and then you position the div you want withposition:absolute;. If however your site scrolls down you need to use CSS expressions in IE6 to keep the div docked to the bottom right corner. – Strelok Sep 1 '10 at 9:44