Stan Brown wrote:
Quote:
I've given up on getting pages to look decent in MSIE 4;(*) now my
goal is just to disable stylesheets for MSIE 4 -- all versions
including 4.72. Anyone know how to do it? |
I've had success with the following combination:
1. Link to a browser-safe stylesheet, pretty much limited to page colors
and font suggestions.
2. In the linked stylesheet, import the advanced rules with syntax:
@import "/path-to/stylesheet.css";
3. In the imported stylesheet, include media types:
@media screen, projection { rules }
This combo hides a lot from a number of CSS-challenged browsers. I did
find, however, that the @media rule also hides from Mac IE 5 and
Konqueror 2.2 (but not Konq3), which is unfortunate but is the lesser of
various evils, IMO. But... I recently stumbled upon a method to
"unhide" @media rules from MacIE by including a box-model hack:
@media screen, projection {
..dummy {
voice-family: "\"}\"";
voice-family: inherit;
}
[Mac IE now sees everything that follows]
HTH
--
To email a reply, remove (dash)ns(dash). Mail sent to the ns
address is automatically deleted and will not be read.