您可以通过以下简单方式做到这一点IE conditional comments
:
HTML
<!--[if IE 7]> <html class="ie7"> <![endif]-->
<!--[if IE 8]> <html class="ie8"> <![endif]-->
CSS
#menu a:visited {
color:#f9f6e0;
display:block;
font-weight:700;
padding-bottom:10px; //kill this in ie *
padding-left:12px;
padding-right:12px;
padding-top:10px; //kill this in ie *
}
.ie7 #menu a:visited,
.ie8 #menu a:visited, {
padding-bottom: 0; //kill this in ie *
padding-top: 0; //kill this in ie *
}
..或者也可以使用CSS-Hacks
更多:http ://www.webdevout.net/css-hacks#in_css
#menu a:visited {
color:#f9f6e0;
display:block;
font-weight:700;
padding-bottom:10px;
padding-bottom:0\9; //kill this in ie *
padding-left:12px;
padding-right:12px;
padding-top:10px;
padding-top:0\9; //kill this in ie *
}