|
CSS3 columns
Can anyone help me please.
I have designed a 2 column section on my webpage using CSS3.
The first column is lower than the second column, how do I level both columns so that they line up together?
This is the CSS3 code I have used.
-moz-column-count: 2;
-moz-column-gap: 20px;
-webkit-column-count: 2;
-webkit-column-gap: 20px;
column-count: 2;
column-gap: 20px;
Thank you.
|