Hi.
I’m using css3 columns in my stylesheet…
@media only screen and (min-width : 961px)
{
.main-content {
-moz-column-count: 2;
-webkit-column-count: 2;
column-count: 2;
-webkit-column-gap: 2em;
-moz-column-gap: 2em;
column-gap: 2em;
-webkit-column-rule: 1px solid #CAC2A5;
-moz-column-rule: 1px solid #CAC2A5;
-o-column-rule: 1px solid #CAC2A5;
column-rule: 1px solid #CAC2A5;
border-bottom: 1px solid #CAC2A5;
}
}
But I have some div.scripture that keeps breaking, half appearing at the bottom of one column and then the other half appearing at the top of the next. Looks unsightly… any suggestions?
The div.scripture has a few simple text formats, nothing special really and a…
div.scripture:first-line {font-weight: bold;} to pickup the first line and that’s about it.
Any suggestions would be appreciated.
Regards, Karl.