CSS Multi-Column Forms in HTML/ASP.NET - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T19:35:07Z http://stackoverflow.com/feeds/question/799552 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/799552/css-multi-column-forms-in-html-asp-net 4 CSS Multi-Column Forms in HTML/ASP.NET Caveatrob 2009-04-28T19:47:42Z 2009-04-28T20:02:40Z <p>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.</p> <p>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?</p> <p>Most of the forms I see only have a single column with field/value.</p> http://stackoverflow.com/questions/799552/css-multi-column-forms-in-html-asp-net/799565#799565 3 Answer by Chris Doggett for CSS Multi-Column Forms in HTML/ASP.NET Chris Doggett 2009-04-28T19:52:05Z 2009-04-28T19:57:26Z <p>These are the ones I use most often:</p> <ul> <li><a href="http://www.alistapart.com/articles/prettyaccessibleforms" rel="nofollow">Prettier Accessible Forms</a></li> <li><a href="http://www.noupe.com/css/form-elements-40-cssjs-styling-and-functionality-techniques.html" rel="nofollow">40+ CSS/JS Form Styling techniques</a></li> <li><a href="http://www.noupe.com/css/47-excellent-ajax-css-forms.html" rel="nofollow">47+ Excellent AJAX CSS Forms</a></li> <li><a href="http://www.smashingmagazine.com/2006/11/11/css-based-forms-modern-solutions/" rel="nofollow">CSS-Based Forms: Modern Solutions</a></li> </ul> http://stackoverflow.com/questions/799552/css-multi-column-forms-in-html-asp-net/799594#799594 1 Answer by Aleris for CSS Multi-Column Forms in HTML/ASP.NET Aleris 2009-04-28T20:02:40Z 2009-04-28T20:02:40Z <p>I didn't find a <strong>clean</strong> 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.</p> <p>If you need a 'table layout' just use a table.</p>