Below is the code for both Safari 3 and Firefox that creates 3 columns with a 1em space between them
/*IE - not supported yet*/
column-count: 3;
column-width: 13em;
column-gap: 1em;
/*Mozilla*/
-moz-column-count: 3;
-moz-column-width: 13em;
-moz-column-gap: 1em;
/*Safari*/
-webkit-column-count: 3;
-webkit-column-width: 13em;
-webkit-column-gap: 1em;
No comments:
Post a Comment