vote up 7 vote down star
4

I know it's bad to use HTML Tables for everything... and that tables should be used only to present tabular data and not to achieve some style goal.

My question is, how do you make HTML forms with CSS so they look nice and aligned like when using tables?

flag

77% accept rate

6 Answers

vote up 12 vote down check

http://www.quirksmode.org/css/forms.html has an example that I've adapted and used before.

link|flag
Thank you so much, this is just what I needed. – Pablo Fernandez Oct 7 '08 at 19:02
vote up 5 vote down

Nick Rigby wrote an excellent article for A List Apart titled Prettier Accessible Forms

Uses fieldset, legend, label. Highly semantic.

link|flag
vote up 2 vote down

Take a look at the code used in wufoo forms, they use ul's to format the forms and they look really good.

http://wufoo.com/gallery/templates/

link|flag
vote up 0 vote down

I would lookup using the div tag to layout data on a page.

Tables are still very much useful for tabular data, but its frowned upon for laying out a page.

View source here on stackoverflow.com, there's probably some good examples.

link|flag
hmm .... page source on SO looks to have lots of tables. :) – Carlton Jenke Oct 7 '08 at 19:02
vote up -1 vote down

Think about putting field names above the field, rather than beside. I find this works about the best.

link|flag
When done right, this makes forms infinitely more readable as your eyes only have to move in one direction instead of scanning back and forth. – John Sheehan Oct 7 '08 at 19:17
It doesn't work very well though for complex forms. For me, it just forced me to simplify the forms, which is never a bad thing. – John Sheehan Oct 7 '08 at 19:18
We don't always have the luxury of specifying the design, unfortunately. – Andrew Hedges Oct 7 '08 at 20:14

Your Answer

Get an OpenID
or

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