Student
Student

Reputation: 28345

Is there an IDE for CSS with code validation?

What's a good IDE for CSS that makes validation of the code as you type?

Upvotes: 1

Views: 1009

Answers (4)

Gareth Davis
Gareth Davis

Reputation: 28059

All of the jetbrains IDE products (with the exception of the free CE edition) include a every good CSS editor.

Upvotes: 1

Paulie Waulie
Paulie Waulie

Reputation: 1690

If you use a Mac for any development then I would advise CSS Edit although I expect that is not the case.

Upvotes: 0

Iznogood
Iznogood

Reputation: 12843

Netbeans also has that and is free. And for what its worth there is also dreamweaver but I have no idea how good it is compared to more "serious" ide's.

Upvotes: 3

Alex
Alex

Reputation: 14618

I would suggest Aptana or Visual Web Developer Express 2010

Aptana is Eclipse-based, cross-platform, needs no installation, just JRE. Pretty neat, I use it. In CSS it even provides code completion for selectors (based on what you have in HTML). If a line is invalid an error sign appears next to it, hover your cursor and read what's wrong.

Visual Web Developer is harder for me because I spent too few hours CSSing in it. From what I've seen it does a pretty decent job, but I still prefer Aptana.

Upvotes: 1

Related Questions