I'm getting text from the database:
<p> texto um pouco curto </p>
And displaying using columns of css in 3 parts, but I wonder if it is possible to block text by just creating another column after </p>
.
#textocolunas {
font-size: 12pt;
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
-webkit-column-gap: 5px;
-moz-column-gap: 5px;
column-gap: 5px;
-webkit-column-rule: 1px solid #C0C0C0;
-moz-column-rule: 1px solid #C0C0C0;
column-rule: 1px solid #C0C0C0;
}
Following is an EDIT fiddle as is: