/ Published in: HTML
If your trying to find a clean way of applying a CSS style to IE6 and IE7 individually, here's how to do it
Expand |
Embed | Plain Text
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <!-- IE 5, 5.5, 6 CSS --> <!--[if lte IE 6]> <link rel="stylesheet" href="css/ie6.css" type="text/css" media="screen" charset="utf-8" /> <![endif]--> <!-- IE 7 CSS --> <!--[if gte IE 7]> <link rel="stylesheet" href="css/ie7.css" type="text/css" media="screen" charset="utf-8" /> <![endif]--> </head> <body> </body> </html>
You need to login to post a comment.
