display:table-cell
by ginpei
HTML
<h1>Humpty Dumpty</h1>
<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>
CSS
.td {
border: solid 1px #999;
display: table-cell;
width: 100px;
}