Thu, 2012-11-22 15:04
Hi
I am using a div with css to insert 2 columns into wordpress posts but I wondered if there was a way for me to define a width for each column.
many thanks
.content {
-moz-column-count: 3;
-moz-column-gap: 10px;
-moz-column-rule: none;
-webkit-column-count: 3;
-webkit-column-gap: 10px;
-webkit-column-rule: none;
column-count: 3;
column-gap: 10px;
column-rule: none;
}
Thu, 2012-11-22 17:20
#1
So not column-width: ; then?
So not column-width: ; then? An individual width for each, although that tends to go against the point of the column property so no not really, build your own columns the old fashioned way with widths, float, and classes ?