Edit in JSFiddle

<h1>Humpty Dumpty</h1>
<div class="table">
    <div class="td">Humpty Dumpty sat on a wall.</div>
    <div class="td">Humpty Dumpty had a great fall.</div>
    <div class="td">All the king's horses and all the king's men couldn't put Humpty together again.</div>
</div>
.table {
    border-spacing: 4px;
}
.td {
    border: solid 1px #999;
    display: table-cell;
    width: 100px;
}