Comments on: Cross browser multi-columns with JQuery and CSS3 http://automagical.rationalmind.net/2011/03/23/cross-browser-multi-columns-with-jquery-and-css3/ n. 1: automatic, but with an element of magic. 2: too complex to understand and/or explain Fri, 04 Mar 2016 06:52:31 +0000 hourly 1 By: rike http://automagical.rationalmind.net/2011/03/23/cross-browser-multi-columns-with-jquery-and-css3/#comment-5756 Wed, 20 Feb 2013 11:59:00 +0000 http://dotmac.rationalmind.net/?p=501#comment-5756 Tried the plugin, did not work at all on an unordered list in IE9. So i came up with a better solution : use conditional comments to add a second UL :

Then just add via CSS .lt-ie10 ul { float: left,; width: 50%; }
does the job perfectly wihtout adding too many plugins to load.

.lt-ie10 => i added this class with a conditional comment too.

]]>
By: chapel hill mayor http://automagical.rationalmind.net/2011/03/23/cross-browser-multi-columns-with-jquery-and-css3/#comment-364 Fri, 26 Aug 2011 09:56:09 +0000 http://dotmac.rationalmind.net/?p=501#comment-364 Produces strange results with ordered lists in IE8 and below. Will do 1 2 3 4, next column, 1 2 3 4, rather than 1 2 3 4 5 6 7 8. In IE6, it falls back to bullets, which is a better if still not optimal behavior. Without total IE support, I don’t really see the point.

]]>