However, I can't seem to get it working in IE. The div-layer displays
correctly at the bottom right when the page-contents are NOT longer as
the screen height. However, if I'm dealing with a longer text, this
causes the div-layer to stick at a certain height.
This is the stylesheet code I use:
.disclaimer {
position: absolute;
right: 0px;
bottom: 0px;
z-index: 1000;
font-weight: bold;
color: #FF0000;
background-color: #009999;
border: solid 1px #000000;
}
And this is the HTML:
<body>
<p>Put a lot of text here (e.g. http://www.lipsum.com)</p>
<div class="disclaimer">Powered by Internet Explorer</div>
</body>
Can anyone help?
Thanks in advance,
Alain