!important是CSS1就定义的语法,作用是提高指定样式规则的应用优先权。语法格式{ c***ule !important },即

写在定义的最后面,例如:box{color:red !important;}

ie7, ie8, firefox, chrome等高端浏览器下,已经可以识别 !important属性, 但是IE 6.0仍然不能完全识别,汗! important的样式属性和覆盖它的样式属性单独使用时(不在一个{}里),IE 6.0认为! important优先级较高,否则当含! important的样式属性被同一个{}里的样式覆盖时,IE 6.0认为! important较低!

important,最主要是为了IE 6.0浏览器。


例如:

.min{

   min-height:300px;

   height:auto !important;

   height:300px;

}

这个在IE6中height:auto !important;级别较低。


.min{

   height:auto !importan;

}

这样写在IE6里级别较高。所以为了兼容IE6,一般这样写:

.min{

   min-height:300px;

   height:auto !important;

   height:300px;

}

.min{

   height:auto !importan;

}