/ Published in: CSS
Instead of extra mark-up and floats to create stylish columns of content we can now use CSS to do the latter. This works in Firefox, Webkit Browsers and IE9.
Expand |
Embed | Plain Text
.multiple-columns { column-count: 3; column-gap: 30px; -moz-column-count: 3; -moz-column-gap: 30px; -webkit-column-count: 3; -webkit-column-gap: 30px; }
You need to login to post a comment.
