I'm needing to use a different stylesheet for IE, and I'm wondering about which stylesheet will take control.
For example, I'll use this code in the <head>:
<link rel="stylesheet" type="text/css" href="styles/style.css" />
<!--[if IE]><link rel="stylesheet" type="text/css" href="styles/ie.css" /><![endif]-->
Then will I need to use !important everywhere in the IE stylesheet? Or will the second stylesheet be seen as more important by IE? Does the order matter?