n3o
n3o

Reputation: 2873

CSS Validator library for Java

I am looking out for a css validator library that I can use in my java application. I have checked out this. http://jigsaw.w3.org/css-validator/manual.html. But according to my understanding that needs to be run on a server locally or used as a command line tool. Correct me if I am wrong here.

Thanks in Advance

Upvotes: 3

Views: 1988

Answers (1)

Kai
Kai

Reputation: 39641

Behind the link you have posted there is a webservice which you can use to validate your CSS files. But you have to be online for doing this. There is also an offline version available: http://jigsaw.w3.org/css-validator/DOWNLOAD.html which you might can embed in your application.

Upvotes: 1

Related Questions