> There is no way to get IE to support something that it doesn't support.
> If IE just ignored it, you'd be fine, but IE screws other things up
> (e.g., hiding content), so hide the position: fixed rule.
>
> < http://w3development.de/css/hide_css_from_browsers/ >
> Some of the elements do seem to stay put where they should be, but
> others end up in all sorts of strange places.
Right. You must hide position: fixed from MSIE/Win.
> Well, just hiding it probably won't work too well, since I imagine
> it means the page won't display in any way as intended in IE,
Not every browser will render your page in exactly the same way.
That's a fact of life. The sooner you come to terms with that, the
better off you'll be.
> so what I am looking for is a way (if there is one) to accomplish a
> similar result using the things that IE does support. I can handle
> 'basic' CSS okay, but when it comes to work-arounds for things that
> aren't fully (or at all) supported or things that behave in an
> unexpected way, I am bit lost. :)
Given: IE/Win breaks when faced with position: fixed. You asked, how
can I achieve this anyways. Answer: IE does not support position:
fixed. That's not the answer you want, but there isn't much else I
can tell you. There is not another value for the position property
called 'fixed-that-works-in-MSIE-WIN'
Ask yourself what is acceptable in MSIE/Win, given that position:
fixed is out of the question. Perhaps position: absolute would work?

Signature
Brian
follow the directions in my address to email me
Linda Antonsson - 29 Sep 2003 18:55 GMT
> Not every browser will render your page in exactly the same way.
> That's a fact of life. The sooner you come to terms with that, the
> better off you'll be.
Obviously, that's unavoidable. But when I think about differences
between browsers (excluding older browsers such as Netscape 4.x) in how
they render pages, I tend to think about things like them not
interpreting margins, padding or size-specifications quite the same, and
those differences can usually be ignored easily enough.
However, the fact that IE doesn't handle position : fixed is something I
consider as a bit more than a difference in rendering since using
position : absolute instead of position : fixed turns it into an
entirely layout.
> Given: IE/Win breaks when faced with position: fixed. You asked, how
> can I achieve this anyways. Answer: IE does not support position:
> fixed. That's not the answer you want, but there isn't much else I
> can tell you. There is not another value for the position property
> called 'fixed-that-works-in-MSIE-WIN'
Well, obviously not. :) But there might have existed another way (as in,
outside of using position) of accomplishing a similar result. If nothing
such exists, fine, but since I wasn't sure I figured asking might be a
good idea. I also wasn't sure whether IE entirely ignored position :
fixed or just interpreted it shoddily.
> Ask yourself what is acceptable in MSIE/Win, given that position:
> fixed is out of the question. Perhaps position: absolute would work?
Unfortunately not, since the basis for the design was to emulate a
framed page.
Linda
Tina Holmboe - 29 Sep 2003 22:56 GMT
Linda Antonsson <linda@mbox321.tele2.se> exclaimed in <bl9rnn$9qhcd$1@id-196096.news.uni-berlin.de>:
> such exists, fine, but since I wasn't sure I figured asking might be a
> good idea. I also wasn't sure whether IE entirely ignored position :
> fixed or just interpreted it shoddily.
Asking is always a good idea. Adding to what Brian has allready told you,
IE/Windows interprets "positions: fixed;" in a distinctly spooky fashion,
sadly.
>> Ask yourself what is acceptable in MSIE/Win, given that position:
>> fixed is out of the question. Perhaps position: absolute would work?
>
> Unfortunately not, since the basis for the design was to emulate a
> framed page.
There exist hacks - AFAIK one convoluted CSS one, and one amazingly
weird Javascript one. You can find references to both on
http://dorward.me.uk/www/frames/
Handle with care, of course.

Signature
- Tina Holmboe Greytower Technologies
tina@greytower.net http://www.greytower.net/
[+46] 0708 557 905
Linda Antonsson - 29 Sep 2003 23:48 GMT
> Asking is always a good idea. Adding to what Brian has allready told you,
> IE/Windows interprets "positions: fixed;" in a distinctly spooky fashion,
> sadly.
Spooky is definitely a good word for it.
> There exist hacks - AFAIK one convoluted CSS one, and one amazingly
> weird Javascript one. You can find references to both on
>
> http://dorward.me.uk/www/frames/
Thanks. :) I am trying out the CSS hack, to see if that one can do what
I need, but so far I am getting some very peculiar results, probably
because I am not quite understanding how to implement it. The Javsscript
one looks quite complex, but if I can't get the CSS method to work, I'll
try that one out too. Somehow. :)
Linda