Wed, 2017-04-26 13:34
I have the followng bullet list.
- Child name one
- Child name two
- Child name thee
- Child name four
- Child name five
- Child name six
And here's my sytle:
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
When it displays, it shows:
First column:
- Child name one
- Child name two
- Child name three
- Child name four
Second column:
- Child name five
- Child name six
Since there are equally six items in each column, how do I get it dispaly 3 list per column?