I'm having problems getting my website to look the same in IE and other browsers. I've tried to use conditional statements to include the style sheet for IE but it's not working. This is my code...
- Code: Select all
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>My Title</title>
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="iestyle.css" />
<![endif]-->
<link rel="stylesheet" type="text/css" href="mozcss.css"/>
</head>
Can anyone help me with what's going wrong??
Thanks in advance


