I've been developing Ruby on Rails applications for some time, and have often found help to develop generate the templates of HTML with accompanying CSS. However, I'd like to make an attempt at doing this myself.

Initial experiments leave me feeling like my process is really slow. I'm writing all my Rails code in VIM, which, with accompanying aliases to run the test suite, is pretty fast for me. However, the back-and-forth between browser/VIM to see new changes seems cumbersome - I'm guessing finding an editor with an embedded browser that constantly sees new changes is ideal for this (any suggestions?)

So far I've experimented with Blueprint, which at the onset seems like it will save me a ton of time. However, what other tools have helped you do the PSD->HTML/CSS conversion as fast as you can?

link|improve this question

57% accept rate
You are editing the template language code or just plain HTML/CSS? – dheerosaur Dec 22 '10 at 4:20
IF i have time i always do static layouts first where the majority of css and html structure is laid out... then I slice these into the necessary views/partials for whatever framework im using as i develop. – prodigitalson Dec 22 '10 at 4:44
Why are you messing around with PSD at the prototyping stage? – Quentin Dec 22 '10 at 10:39
feedback

4 Answers

up vote 1 down vote accepted

Have you tried using http://jsfiddle.net/ ? It has changed my world.

link|improve this answer
feedback

As a front-end developer, unfortunately it can seem time-consuming. You'll develop some tricks and shortcuts and such. I've started adapting the 960.gs grid system for layouts, as it allows me to make layouts much quicker. Actually, I USED to do that - now I literally have a template for a specific layout built out that I just copy and paste. I recommend you spend half a day and get the barebones for a typical web app/site that you may use frequently.

Using some CSS3 instead of images helps, as well initially. I would do that, then fall back to support older browsers using modernizronce you've gotten it working with "good browsers".

Hope that helps! If you want any of the resources I have or have any specific questions, feel free to email me... [firstname] @ [wholename] .com.

Connor

link|improve this answer
feedback

CSS is tiring afai-knew-it. But using the powers of vim, everything is sailing much better for me.

Maybe my snipmate css snippets can help you. I've been continually improving this one to make things much easier and faster.

Examples:

b[press Tab key] /* means border */
/* will produce */
border: 1px solid #999;

bra[press Tab key] /* means border-radius */
/* will produce */
-moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;

=ir /* means Image Replacement */
/* will let you choose from 6 IR methods */
/* Below is one method, namely Leahy/Langridge Method */
#image {height: 0 !important; overflow: hidden; padding-top: 0px; width: 0px; background: url() no-repeat}

=reset /* means Reset.css */
/* will produce the latest reset.css (taken from http://html5boilerplate.com/) */

Hope this helps. Cheers!

link|improve this answer
feedback

The best is using a Prototyping tool that exports to HTML. The best one for me http://www.justinmind.com

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.