I have this portion of syntax
<!DOCTYPE html>
<!--[if IE]> <html lang="en" class="ie"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<html lang="en">
<!--<![endif]-->
it works fine for IE 8
and IE 9
but not for IE
. Any suggestions?
I have some css
that I want to apply when the browser is IE
in general.
example:
.ie #nav ul#top-nav li.top-nav-item a.top-nav-link {
width: 167px;
}
EDIT
I have a TypeKit
which is not working in IE at the moment. I want to do some css
tweaking so my page looks fine on IE
until I find a solution for the TypeKit
issue