Best non-WYSIWYG CSS Editor? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T03:42:56Z http://stackoverflow.com/feeds/question/483984 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/483984/best-non-wysiwyg-css-editor 3 Best non-WYSIWYG CSS Editor? Triptych 2009-01-27T16:06:22Z 2009-07-06T23:00:24Z <p>I'm looking for a powerful CSS text editor. I have no need for WYSIWYG capabilities. Right now I'm using Vim, Aptana, and Visual Studio 2008 depending on the project, but I'm wondering if there are better solutions. Free is better.</p> <p>I want all the obvious features: </p> <ul> <li>auto-completion </li> <li>syntax highlighting</li> <li>tab/space options</li> </ul> <p>A few less common:</p> <ul> <li>auto-formatting</li> <li>auto block-commenting</li> <li>different text-sizes for comments and code</li> </ul> <p>And, if possible, one that I haven't seen anywhere. I usually write CSS rules on one line, so I can see a lot of rules at once:</p> <pre><code>div#big-box {color:#000; font-family:Georgia, serif; line-height:2em;} div#big-box a {color:#06a; text-decoration:none; } div#big-box a:hover {background-color:black; color:white;} </code></pre> <p>This is great for browsing CSS rules, but the horizontal scrolling can be a pain, so I'm wondering if any editor can automatically expand the CSS rule I'm currently editing to a block format, one line per declaration:</p> <pre><code>div#big-box { color:#000; font-family:Georgia, serif; /* Editing here, so this ruleset is expanded */ line-height:2em; } div#big-box a {color:#06a; text-decoration:none; } div#big-box a:hover {background-color:black; color:white;} </code></pre> <p><em>SO Note: this is NOT an dupe of another question asking about CSS editors, as that one specifically asks for WYSIWYG editors.</em></p> http://stackoverflow.com/questions/483984/best-non-wysiwyg-css-editor/484001#484001 0 Answer by Joel Coehoorn for Best non-WYSIWYG CSS Editor? Joel Coehoorn 2009-01-27T16:11:05Z 2009-01-27T16:11:05Z <p><a href="http://www.skybound.ca/" rel="nofollow">Stylizer</a></p> <p>It has a lot of WYSIWYG features that you don't need, but you don't have to use them. The author of the app has been on the JoelOnSoftware forums some.</p> http://stackoverflow.com/questions/483984/best-non-wysiwyg-css-editor/484015#484015 1 Answer by cgreeno for Best non-WYSIWYG CSS Editor? cgreeno 2009-01-27T16:12:59Z 2009-02-25T20:19:45Z <p><a href="http://sourceforge.net/projects/turbocss/" rel="nofollow">TurboCSS</a> from SourceForge is quite nice still in Beta however. </p> <p>If that is not your flavour then <a href="http://www.scintilla.org/SciTE.html" rel="nofollow">Scite</a> also works great.</p> http://stackoverflow.com/questions/483984/best-non-wysiwyg-css-editor/484021#484021 3 Answer by Jonathan Sampson for Best non-WYSIWYG CSS Editor? Jonathan Sampson 2009-01-27T16:13:36Z 2009-01-27T16:34:49Z <p>As much as I hate to say it, <a href="http://www.adobe.com/products/dreamweaver/" rel="nofollow">Dreamweaver</a> might be a forefront option for you. There are numerous editors out there that have the basic stuff, like syntax highlighting and color-coding, etc. But the full-package seems to be available rarely (at least in my experience). Dreamweaver was one of the few editors I have used in the past that gave me just about everything.</p> http://stackoverflow.com/questions/483984/best-non-wysiwyg-css-editor/484030#484030 5 Answer by Natrium for Best non-WYSIWYG CSS Editor? Natrium 2009-01-27T16:15:16Z 2009-01-27T16:15:16Z <p><a href="http://notepad-plus.sourceforge.net" rel="nofollow" title="Notepad++">Notepad++</a> does a great job.</p> http://stackoverflow.com/questions/483984/best-non-wysiwyg-css-editor/484100#484100 1 Answer by Ionut G. Stan for Best non-WYSIWYG CSS Editor? Ionut G. Stan 2009-01-27T16:30:28Z 2009-01-27T16:30:28Z <p><a href="http://www.activestate.com/store/download.aspx?prdGUID=20f4ed15-6684-4118-a78b-d37ff4058c5f" rel="nofollow">Komodo Edit</a> maybe?</p> http://stackoverflow.com/questions/483984/best-non-wysiwyg-css-editor/484105#484105 0 Answer by Fabian Steeg for Best non-WYSIWYG CSS Editor? Fabian Steeg 2009-01-27T16:31:50Z 2009-01-27T16:31:50Z <p>The Eclipse <a href="http://www.eclipse.org/webtools/" rel="nofollow">Web Tools</a> CSS editor does pretty much all of that (except for the formatting while editing and different font size for comments, but you can make them bold etc.).</p> http://stackoverflow.com/questions/483984/best-non-wysiwyg-css-editor/484115#484115 1 Answer by theman_on_vista for Best non-WYSIWYG CSS Editor? theman_on_vista 2009-01-27T16:34:38Z 2009-01-27T16:34:38Z <p>Firebug does a very good job in my opinion. The downside is that it is FF-centric</p> http://stackoverflow.com/questions/483984/best-non-wysiwyg-css-editor/484154#484154 0 Answer by Aaron Digulla for Best non-WYSIWYG CSS Editor? Aaron Digulla 2009-01-27T16:42:10Z 2009-01-27T16:42:10Z <p>I'm using <a href="http://www.jedit.org/" rel="nofollow">jEdit</a> because it has a pretty complete set of completions for CSS and it's very simple to extend it.</p> http://stackoverflow.com/questions/483984/best-non-wysiwyg-css-editor/484302#484302 1 Answer by David Heggie for Best non-WYSIWYG CSS Editor? David Heggie 2009-01-27T17:15:37Z 2009-01-27T17:15:37Z <p>Not free, but WestCiv's <a href="http://www.westciv.com/style_master/" rel="nofollow">StyleMaster</a> I think would fit the bill for most things you're after.</p> http://stackoverflow.com/questions/483984/best-non-wysiwyg-css-editor/484335#484335 0 Answer by Andrew Mason for Best non-WYSIWYG CSS Editor? Andrew Mason 2009-01-27T17:22:50Z 2009-01-27T17:22:50Z <p><a href="http://www.geany.org/" rel="nofollow">Geany</a> is a very nice editor, open source and multi platform. I've been flipping between that and Notepad++. Notepadd++ works smoother on my Windows box at work, but on a Linux machine <a href="http://www.geany.org/" rel="nofollow">geany</a> wins out.</p> http://stackoverflow.com/questions/483984/best-non-wysiwyg-css-editor/484724#484724 1 Answer by Andy Ford for Best non-WYSIWYG CSS Editor? Andy Ford 2009-01-27T18:58:14Z 2009-01-27T18:58:14Z <p>Since you're using Visual Studio, I have to guess you're on Windows. But since an OS was not specified... <a href="http://macrabbit.com/cssedit/" rel="nofollow">CSSEdit</a> (Mac only) is the best I've used (I'm a full time CSS dev). It's even good enough to make me leave my beloved <a href="http://macromates.com/" rel="nofollow">TextMate</a> just for editing CSS.</p> <p>On Windows, I get by with Notepad++</p> http://stackoverflow.com/questions/483984/best-non-wysiwyg-css-editor/485722#485722 1 Answer by Tim K. for Best non-WYSIWYG CSS Editor? Tim K. 2009-01-27T22:52:38Z 2009-01-27T22:52:38Z <p>When I was using Windows I was an avid <a href="http://www.topstyle4.com/" rel="nofollow">TopStyle Pro</a> user (which kind of ages the amount of time I've been doing CSS), on Mac I'm all about <a href="http://macrabbit.com/cssedit/" rel="nofollow">CSSEdit</a>.</p> http://stackoverflow.com/questions/483984/best-non-wysiwyg-css-editor/490765#490765 0 Answer by jussij for Best non-WYSIWYG CSS Editor? jussij 2009-01-29T07:24:16Z 2009-01-29T07:24:16Z <p>With a <em>bit of tweaking</em> it should be possible to configure <a href="http://www.zeusedit.com" rel="nofollow">Zeus for Windows</a> to do most of what you want.</p> <blockquote> <p>And, if possible, one that I haven't seen anywhere. I usually write CSS rules on one line, so I can see a lot of rules at once:</p> </blockquote> <p>One feature that Zeus has that might help in this case is <em>code folding</em>. This means your code:</p> <pre><code> div#big-box { color:#000; font-family:Georgia, serif; /* Editing here, so this ruleset is expanded */ line-height:2em; } </code></pre> <p>can be folded down to this:</p> <pre><code> div#big-box [+]{ ... } </code></pre> http://stackoverflow.com/questions/483984/best-non-wysiwyg-css-editor/1089596#1089596 0 Answer by Caniure for Best non-WYSIWYG CSS Editor? Caniure 2009-07-06T23:00:24Z 2009-07-06T23:00:24Z <p>Can I suggest <a href="http://www.arduosoft.com" rel="nofollow">ArduoCss</a>? ArduoCss is lite,fast and freeware. For me the best Css Editor!</p>