I’m looking for a way to display 3 columns of content. I’ve found a way to display wrap-around columns, but I don’t want that for this page. I’m looking for a way to say
<column>
<!-- content -->
</column>
3 times, and have 3 columns displayed beside each other. The best example I have offhand is The Verge (http://www.theverge.com/). What is the best way to do this?
I would suggest you to either use
<table>or CSS.CSS is preferred for being more flexible. An example would be:
jsFiddle: http://jsfiddle.net/ndhqM/
Using float:left would make 3 columns stick to each other, coming in from left inside the centered div “content box”.