vote up 3 vote down star
2

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.

flag

49% accept rate

2 Answers

vote up 1 vote down

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|flag
I suppose that depends on your interpretation of the word "cleanest". – Steve Perks Apr 28 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 at 20:22

Your Answer

Get an OpenID
or

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