View Single Post
Old 01-02-2009, 02:20 PM   #3 (permalink)
sketchMedia
The Prestige
Advanced Programmer Top Contributor Good Samaritan 
 
sketchMedia's Avatar
 
Join Date: Oct 2007
Location: Manchester, UK
Posts: 854
Thanks: 32
sketchMedia is on a distinguished road
Default

I usually use a main style sheet which holds all styles that good browsers render properly and for the retarded browsers i use conditional statements to overwrite specific styles:

HTML Code:
<link rel="stylesheet" href="main.css" type="text/css" />
<!--[if lte IE 6]>
     <link rel="stylesheet" type="text/css" href="ie-6.css" />
<![endif]-->
<!--[if IE 7]>
     <link rel="stylesheet" type="text/css" href="ie-7.css" />
<![endif]-->
__________________
mysql> SELECT * FROM `users` WHERE `users`.`clue` > 0;
Empty set (0.00 sec)
sketchMedia is offline  
Reply With Quote
The Following User Says Thank You to sketchMedia For This Useful Post:
sarmenhb (01-03-2009)