Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anyone know a good tool for validating XHTML/CSS offline? [closed]

Tags:

css

xhtml

I'd like to find a command-line tool for Linux that will validate both XHTML and CSS. As silly as this may sound, I'd like it to be able to operate offline.

like image 930
Michael Mior Avatar asked Jul 22 '09 18:07

Michael Mior


People also ask

Which online tool can be used to validate CSS?

W3Schools is one of the top contenders among the Validation tools. It is used to check the correctness of w3. css. It provides validation warnings for CCs1,CSS2, CSS3, CSS4 properties.

How do you validate your HTML and CSS?

You can validate both HTML and CSS files. You can use any commercial software package or free online application, such as the following World Wide Web Consortium (W3C) validators: W3C CSS Validator at http://jigsaw.w3.org/css-validator/ W3C HTML Validator at http://validator.w3.org/

What tool is used to check HTML validity?

An HTML validator is a quality assurance program used to check Hypertext Markup Language ( HTML ) markup elements for syntax errors. A validator can be a useful tool for an HTML user who receives data electronically from a variety of input sources.


1 Answers

HTML tidy is a great tool for X/HTML validation

  • There is a Windows GUI available for tidy.
  • Tidy's sourceforge page is here.
  • For plain-old XHTML or XML validation you can use any XML editor with a validator. Or a simple tool like xmlstartlet.

The W3C's CSS validator is also available for download

This tool claims to do offline CSS validation

like image 157
Elijah Avatar answered Sep 24 '22 18:09

Elijah