ugo 2004/04/23 00:18:28
Modified: src/blocks/linotype/samples/styles main.css Log: Added CSS workaround for missing suppor of position:fixed in IE6.
Just yesterday I came across the same thing and found probably an easier workaround:
http://www.w3.org/Style/banner.css
Instead of using
div.banner {
position: fixed;
}you write
div.banner {
position: absolute;
}* > div.banner {
position: fixed;
}As IE also ignores the selector, position: fixed is never applied.
From what I can see with the current workaround position:fixed is neither used in other browsers, is it?
Joerg
