I am wondering if there is an IE alternative to using column-count
and column-gap
?
I have made this post about creating a list that automat
I found this: Multi-column Layout with CSS3. Read the section titled CSS3 Multi-Column Browser Support. It states the following:
If you need to support browsers that don't have multi-column support, then you should have a fallback option for those browsers. Here is how you can do it with the Modernizr script...
Place the following SCRIPT tag in your HEAD after any other style sheets:
Add another SCRIPT below the above line that reads:
Create a CSS style sheet that includes your multi-columns CSS and save it as columns.css in the same directory.
The page Multiple Columns provides a JavaScript fallback if you're interested going this way.