
Untitled
By: a guest on
May 1st, 2012 | syntax:
None | size: 0.57 KB | hits: 14 | expires: Never
Is there any way to vertically justify text in HTML?
<div class="text"><p>I am currently displaying text in an HTML table that is simply one large row and two columns...</div>
<div class="references">If "Side by Side" is your main criterion for choosing a table with just two columns...</div>
.text {
-webkit-column-count: 2;
-webkit-column-gap: 20px;
-webkit-column-rule: solid 1px #999;
}
.references {
padding: 10px;
-webkit-column-count: 3;
-webkit-column-gap: 10px;
-webkit-column-rule: solid 1px #999;
border-top: solid 1px #999;
}