CSSLint

Parsing errors should be fixed(应当修正解析错误)

 
The most important rule, as far as CSS Lint is concerned, is to ensure there are no parsing errors in the CSS. Parsing errors usually mean you mistyped a character and caused the code to become invalid CSS. These errors may cause the browser to drop a property or an entire rule. Parsing errors are always presented as errors by CSSLint, the most important issues to fix.
 
解析错误是指代码编写的错误导致的浏览器弃掉这栏规则或者是整个栏目的规则.

Possible Errors(可能的错误)

The following rules point out potential errors in your CSS.(潜在错误)

Compatibility(兼容性)

The following rules flag for compatibility problems across browsers and browser settings.

Performance

The following rules are aimed at improving CSS performance, including runtime performance and overall code size.

Maintainability & Duplication

These rules help to ensure your code is readable and maintainable by others.

Accessibility

These rules are designed to pick out possible accessibility issues.

OOCSS

These rules are based on the principles of OOCSS.

 
 
 
 
 
 
 
 
 
原文地址:https://www.cnblogs.com/imvkmark/p/2658953.html