css 选择器优先级

p#id > #id > p.class > class > p

.hack{
/*demo1 */
/*demo1 注意顺序,否则IE6/7下可能无法正确显示,导致结果显示为白色背景*/
background-color:red; /* All browsers */
background-color:blue !important;/* All browsers but IE6 */
*background-color:black; /* IE6, IE7 */
+background-color:yellow;/* IE6, IE7*/
background-color:gray9; /* IE6, IE7, IE8, IE9, IE10 */
background-color:purple; /* IE8, IE9, IE10 */
background-color:orange9;/*IE9, IE10*/
_background-color:green; /* Only works in IE6 */
*+background-color:pink; /* WARNING: Only works in IE7 ? Is it right? */
}

原文地址:https://www.cnblogs.com/ziye/p/4515174.html