Adding browser specific CSS

drupal_add_css(path_to_theme() . '/fix-ie.css', array( 'weight' => CSS_THEME, 'browsers' => array( 'IE' => 'lt IE 7', '!IE' => FALSE ), 'preprocess' => FALSE) );

 

Drupal 7  the recommended way is by using the use drupal_add_css() function in your template.php file.