CSS Multi-Column Forms in HTML/ASP.NET - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T19:35:07Zhttp://stackoverflow.com/feeds/question/799552http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/799552/css-multi-column-forms-in-html-asp-net4CSS Multi-Column Forms in HTML/ASP.NETCaveatrob2009-04-28T19:47:42Z2009-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#7995653Answer by Chris Doggett for CSS Multi-Column Forms in HTML/ASP.NETChris Doggett2009-04-28T19:52:05Z2009-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#7995941Answer by Aleris for CSS Multi-Column Forms in HTML/ASP.NETAleris2009-04-28T20:02:40Z2009-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>