views:

628

answers:

12
+2  Q: 

Best tool for CSS?

Hi,

What is the best free tool for CSS design?

Cheers, Srinivas

+3  A: 

I think the best way to create CSS files is still some Editor with Syntaxhighlighting (for example Notepad++, Eclipse with extensions, ...). Also quite nice is Firebug to test some small changes before you put it in the CSS file.

Gregor
+17  A: 

Firefox with Firebug.

Rahul
Agreed, the CSS editor in the Firefox developer toolbar can also be a handy tool for adding some rules in realtime.
Kristian J.
+2  A: 

Some great pointers here about Best CSS Tools.

smink
+1  A: 

I'm guessing you don't want to hear me say, "A text editor and a good understanding of CSS"? It's what I use, combined with other good development tools like Firebug and the Web Developer extension for Firefox. These let you fool around with your CSS, although they might not be what you're looking for.

AndrewK
A: 

Similar question asked here:

CSS coders out there! What is your fav editor?

Turnkey
A: 

I am going to go against the flow here :) but personally I think Visual Studio is fantastic for CSS editing. Though I didn't try it, I heard that the free Visual Studio Web Developer Express has the same features.

LBugnion
+4  A: 

CSS Stylizer is quite good.

I mostly just use Visual Studio though.

EDIT: Sorry just read that you wanted free. In that case I would use one of the VS Express editions.

Galwegian
Stylizer has a free edition, but it's missing it's best features that way.
Joel Coehoorn
A: 

If you happen to prefer Eclipse as a development environment, the Aptana plugin has a rather nice CSS editor with code hints and debugging. Plus, both Eclipse and Aptana are free =)

Anne Porosoff
+2  A: 

Firebug is great because it shows you the box (size, padding, border, and margins) generated by an element and lets you visually edit margins, padding, etc and see the results onscreen.

Understanding the box model is the hardest part about learning and using CSS, so tweaking it visually is a huge help.

Of course, you still need an editor to actually create the code and save any changes.

Nathan Long
A: 

CSSEdit looks cool. I wanted to buy it for a long time but I don't have a mac.

Otherwise, I have to say that Firebug is the champ. Totally demystifies CSS and Javascript.

Jethro Larson
CSSEdit is outstanding.
Philip Morton
+2  A: 

If you really feel that you need a CSS "tool/editor", check out TopStyle Pro. I used to utilize this program religiously because of the quick and automatic preview. However, I have now dumped it in favor of the following Firefox extensions:

  1. Firebug
  2. Web Developer
  3. CSSViewer
leek
+1  A: 

http://designinfluences.com/fluid960gs/

http://960.gs/

http://bluetrip.org/

Are three CSS frameworks that give you a good base to build a CSS design on top of. Starting with a grid based css layout makes it much easier to position elements in a consistent manner that's pleasing on the eye.

Steve Claridge