csslint icon indicating copy to clipboard operation
csslint copied to clipboard

Automated linting of Cascading Stylesheets

Results 103 csslint issues
Sort by recently updated
recently updated
newest added

### 1. Summary I couldn't ignore [**`unique-headings` rule**](https://github.com/CSSLint/csslint/wiki/Headings-should-only-be-defined-once), use [**ignoring parts of CSS during linting**](https://github.com/CSSLint/csslint/wiki/Ignoring-parts-of-CSS-during-linting). I don't reproduce this issue for another CSSLint rules. ### 2. Environment + Windows 10.0.18362...

Please ignore minified files by default, to reduce noise.

I'm using property `space-evenly` with `justify-content`, and running CSSLint over my file is raising the follwoing error: ```bash resources/css/style.css [ 35] ··justify-content:·space-evenly; **** CSSLintBear [Section: css | Severity: NORMAL] ****...

I've implemented the newest version (1.0.3) of CSSLint in JSFiddle. By looking into the source code I can see you support the `fr` unit on `grids`: ```js case "fr": this.type...

> Single-line > > Single-line comments look like JavaScript comments, and do not output in the resulting CSS: > > // I'm a comment! Stylus marks comment as error.

The following extract of coding has errors: Expected RBRACE at Line 394 col 18 and warnings: 1) standard property 'box-shadow' should come after vendor-prefixed property -moz-box-shadow 2) standard property 'box-shadow'...

I have this CSS: ``` input[type=text]:invalid, input[type=password]:invalid, textarea:invalid { outline: none; box-shadow: none; } ``` Unfortunately, in IE I have to set the outline to none and in Firefox I...

Please go ahead and exclude `node_modules` by default, as in many Node.js projects there are hundreds of third party files there which are not expected to conform to any linting...

I have a section of css code that makes use of CSS grid's ability to name rows and columns to make them easier to use. When I define it like...