CSS中规则的顺序或顺序是否重要?
这篇文章说它很重要:Order of CSS rules matters!!!!!!!!!!
我没有在CSS规范中注意到这一点.
Calculating a selector’s specificity应该说,如果两个规则具有相同的特异性,那么它是两个规则中的较晚规则(即在前一个规则之后定义的哪个规则),这是有效规则吗?
解决方法
订单确实很重要.如果特异性相等,则稍后声明的规则将胜出.请参阅规范中的
Cascading Order:
…Finally,sort by order specified: if two declarations have the same weight,origin and specificity,the latter specified wins. Declarations in imported style sheets are considered to be before any declarations in the style sheet itself.