IE doesn't support CSS3 columns — no big deal, right? Even though, I'm trying to find any modernizr-like library to do the trick. I don't really want to code different CSS for IE, as that would be giving way too much care and attention to something we all despise. Any suggestions?
|
migrated from programmers.stackexchange.com Mar 18 '11 at 4:25
|
Pragmatic Programmer's HTML5 and CSS3 book has some great advice on stuff like this. For columns, it recommends using the Columnizer Plugin for jQuery for IE. |
|||
|
|
|
As of IE10, there is now native (and un-prefixed) support for CSS3 columns. http://msdn.microsoft.com/en-us/library/ie/hh673534(v=vs.85).aspx |
|||
|
|
|
Have a look at these articles on ALA, I think thay may just have what you were looking for.. |
|||
|
|
|
CSS3 provides a way of turning any HTML node's content into any number of columns. There are properties for controlling the number of columns as well as their width, relative height ("fill," or how the content is divided across the existing columns), gutter between columns, "rule" (dividing line or border), etc. As a starting point, see the w3schools.com CSS3 Multiple Columns reference page. However, as usual, IE alone among widely used browsers does not support the column- CSS3 properties, except for IE10. One cross-browser solution is the Columnizer jQuery Plugin. |
|||
|
|
Without seeing your code, I would suggest putting each column in a div. Then redefine the body tag after you load the stylesheet for IE only, and add the styles for the divs. For IE only:
You could even take it a step further and move the body style into it's own style sheet and load the style sheet you need depending on the browser. It'll depend on how far you want to take it. |
|||
|
|