如何将以下规则仅应用于IE?
.abc { float:left; height:0; margin:0 10px; width:0; /*Apply these rules for IE only*/ position:absolute; left:30; top:-10; /*Apply these rules for IE only*/ }
在IE9及更高版本的浏览器中,这是通过条件注释来完成的。
<!--[if IE]> <style type="text/css"> IE specific CSS rules go here </style> <![endif]-->