ckstyle-node icon indicating copy to clipboard operation
ckstyle-node copied to clipboard

Nodejs version of CSS CheckStyle

Results 11 ckstyle-node issues
Sort by recently updated
recently updated
newest added

你这个代码看起来还真是有些费劲啊

如下一个test.css包含通配选择`*` ``` css * {padding-bottom: 2px;} ``` 对test.css执行`ckstyle check test.css`命令时,出现如下报错信息 ``` C:\Users\Administrator\AppData\Roaming\npm\node_modules\ckstyle\ckstyle\plugins\helper.js:214 for(var i = 0; i < words.length; i++) { ^ TypeError: Cannot read property 'length' of null at...

- [x] margin - [x] padding - [ ] font - [ ] background - [ ] border - [ ] CSS3相关

feature
P1

padding border border-radius list-style outline background font

bootstrap icons失效 [http://getbootstrap.com/dist/css/bootstrap.css](http://getbootstrap.com/dist/css/bootstrap.css) 压缩后,icons相关的内容都只剩下编码。 ### 复现方法 将[http://getbootstrap.com/dist/css/bootstrap.css](http://getbootstrap.com/dist/css/bootstrap.css)使用ckstyle压缩后,替换[http://getbootstrap.com/components/](http://getbootstrap.com/components/)页面中的[http://getbootstrap.com/dist/css/bootstrap.min.css](http://getbootstrap.com/dist/css/bootstrap.min.css)

input ``` css .foo { background-color: #999; background: url(../img/demo.png) 0 0 no-repeat; } ``` output 后面覆盖了前面的 background-color ,变成了transparent ``` css .foo { background: url(../img/demo.png) 0 0 no-repeat; } ```