amateur
amateur

Reputation: 44605

jslint type tool for css

I am using JSLint to validate and inspect my javascript files. I find it very useful and helps me write better code. I have integrated it into Visual Studio through external tools.

I am looking for a similar tool but this time for CSS? Any other there to look at, mostly to carry out same tasks as JSLint.

Upvotes: 3

Views: 1529

Answers (2)

Robin Winslow
Robin Winslow

Reputation: 11502

There's also http://csslint.net/.

Upvotes: 2

Daniel Vassallo
Daniel Vassallo

Reputation: 344311

W3C have an online CSS validator. It's not downloadable, but you may want to write a short script that sends the contents of you CSS files to W3C and returns the results.

It can be downloaded from here. (Thanks @David... see comment below)

W3C also expose a Web Service API for CSS validation.

Upvotes: 1

Related Questions