I've got css columns in effect (in wp). I'm getting extra space below the content. The height of the extra space matches that of the paragraph that has been moved over to the 2nd column, as if the browser is thinking that paragraph is not in a 2nd column. This is creating an unwanted scrollbar. It's something dumb but I can't figure it out. Help?
body.single article.post .entry-content {
border-top: 1px solid #666;
padding-top: 20px;
-moz-columns: 2 400px; /* Firefox */
-moz-column-gap: 3em;
-moz-column-rule: 1px solid #666;
-moz-column-fill: balance;
-webkit-columns: 2 400px; /* Chrome, Safari, Opera */
-webkit-column-gap: 3em;
-webkit-column-rule: 1px solid #666;
columns: 2 400px;
column-gap: 3em;
column-rule: 1px solid #666;
column-fill: balance;
overflow-y: hidden;
text-align: justify;
width: 100%;
font-size: .9em;
text-indent: 2em;
}