View Full Version : Just a quick question about IE 5.5 and css......


XxsamanthaxX
06-23-2003, 06:41 PM
I noticed that the css on my page doesn't work properly on ie 5.5.
And it doesn't work at all on macs internet explorer......
Is there something wrong with my code?
<style type="text/css">
a:link { color: #000000; text-decoration:none; font-weight: normal }
a:visited { color: #000000; text-decoration:none; font-weight: normal }
a:active { color: #000000; text-decoration:none; font-weight: normal }
a:hover { color:#000000; text-decoration:line-through; cursor:ne-resize }
</style>

<style type="text/css">
BODY
{direction:rtl;
SCROLLBAR-FACE-COLOR: #FFFFFF ;
SCROLLBAR-HIGHLIGHT-COLOR:#000000 ;
SCROLLBAR-SHADOW-COLOR: #000000 ;
SCROLLBAR-3DLIGHT-COLOR: #000000 ;
SCROLLBAR-ARROW-COLOR: #000000 ;
SCROLLBAR-TRACK-COLOR: #FFFFFF ;
SCROLLBAR-DARKSHADOW-COLOR: #000000;
SCROLLBAR-BASE-COLOR: #FFFFFF }
</STYLE>

Is there anything I can do to fix this problem? Or is it just the browser?

Thanks
-Samantha

zangerbanger
06-23-2003, 06:50 PM
It looks to me that you have 2 separate stylesheets (links and scollbars). Try combining the 2 stylesheets together into one.

PS: The problem shouldn't be with the browser because IE5.5 should be able to support CSS (http://hotwired.lycos.com/webmonkey/reference/browser_chart)

XxsamanthaxX
06-23-2003, 06:55 PM
Thanks for the quick reply... Two more quick questions.... Is it true that if you use borders around divs in 5.5 the text will overflow the border? And how come none of my borders show up in 5.5?