Even dithering, I should get something close, not violently off, you know?
Supposedly IE5 on a MAC should have CSS2 implemented. The truth is, not quite fully.
What I've discovered through a little investigative work is that you can't use RGB values when specifying colors in stylesheets if your target audience is using a MAC. For example:will produce accurate results, butCode:<STYLE> body { background-color: #FFE796; color: #00602D; } </STYLE>produces thisCode:<STYLE> body { background-color: RGB(255,231,150); color: RGB(0,96,45); } </STYLE>




Reply With Quote