Ha, yeah that didn't work. Do you see anything wrong with my css? I'm just getting my feet wet understanding css. I *believe* I created a paragraph called columns with the column property, and applied the column paragraph style in RH.
Oh well, until/unless someone else chimes in, I'll leave the list as it originally was. This was just a nice-to-have idea. The possibilities in the article you referenced look interesting though, if we can figure out how to implement it!
Thanks,
Laurie
I think you need to define your columns for a div and wrap that around your paragraphs.
div.columns {
-webkit-columns: 300px 2;
etc.
}
<div class="columns">
<p>doc</p>
<p>docx</p>
...
</div>
Also, note the browser requirements at the bottom of the page - it won't work in IE9 for example and probably not with the RH preview window.