up vote 9 down vote favorite
6
share [g+] share [fb]

I've researched for hours and still haven't found a robust, non-absolute-positioning solution for displaying multiple-column forms and values without using TABLE tags.

Can someone point me to a resource specifically oriented towards reproducing table-based, multiple-column forms (like name and address forms) in CSS to standards?

Most of the forms I see only have a single column with field/value.

link|improve this question

70% accept rate
feedback

2 Answers

I didn't find a clean way to make this with CSS that works without problems in most major browsers and I doubt it exists. Most 'solutions' use hacks and 'fixes' to workaround a current lack of support for this kind of layout. While table based layout has its downsides it is the cleanest solution for what you are probably trying to achieve.

If you need a 'table layout' just use a table.

link|improve this answer
I suppose that depends on your interpretation of the word "cleanest". – Steve Perks Apr 28 '09 at 20:11
@Steave Don't get me wrong, I would love to use a CSS techique for this kind of layout, I just didn't found it yet. Even the most credible approach linked above uses javascript and a few CSS hacks to get it. Not to mention the width: 120px that might cause some problems with variable size labels (localized strings for example). – Aleris Apr 28 '09 at 20:22
feedback

Your Answer

 
or
required, but never shown

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