Tabular Divs
by helpinspireme
HTML
<div class="container">
<div class="row">
<div class="left">
<h4>HI there</h4>
<p>something</p>
<p>ndustry.</p>
</div>
<div class="right">
<p>100%</p>
</div>
</div>
<div class="row-spacer"></div>
<div class="row">
<div class="left">
<h4>HI there</h4>
<p>ndustry.</p>
</div>
<div class="right">
<p>100%</p>
</div>
</div>
</div>
CSS
.row-spacer {
clear: both;
height: 2px;
}
.container {
display: table;
width: 100%;
}
.row {
display: table-row;
}
.left, .right {
display: table-cell;
vertical-align: middle;
}
.left {
background-color: red;
width: 80%;
}
.right {
background-color: green;
width: 20%;
text-align: center;
}