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
You might also try.
.col{ float: left; } .col + .col{ float: left; margin-left: 20px; } /* or */ .col:not(:nth-child(1)){ float:left; margin-left: 20px; }
column column column
ref: http://codepen.io/co0kie/pen/gPKNWX?editors=1100