css3 multiple columns


/ Published in: CSS
Save to your folder(s)

thanks to Perishable Press


Copy this code and paste it in your HTML
  1. .multiple-columns {
  2.  
  3. -moz-column-count: 3;
  4. -moz-column-gap: 33px;
  5.  
  6. -webkit-column-count: 3;
  7. -webkit-column-gap: 33px;
  8.  
  9. column-count: 3;
  10. column-gap: 33px;
  11. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.