CSS Columns displaying posts
-
I have CSS content like this for my static page and other pages.
-moz-column-count: 2;
-moz-column-gap: 5px;
-moz-column-rule: 2px dotted #ccc;
-webkit-column-count: 2;
-webkit-column-gap: 5px;
-webkit-column-rule: 2px dotted #ccc;
column-count: 2;
column-gap: 5px;
column-rule: 2px dotted #ccc;
border-right:1px dotted #ccc}but posts on the bottom of the first column are cut off and start over on the second column “cut off” and looks terrible. what must i do to have the posts goto the next column in full or in the first column.
The topic ‘CSS Columns displaying posts’ is closed to new replies.