You could do it like this:
Code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>equal height</title>
<style media="all">
.container{width:100px;background:#000;display:table;}
.left, .right {display: table-cell; width: 50px;}
.left{background:#0099ff;}
.right{background:#007774;}
</style>
</head>
<body>
<div class="container">
<div class="left">
testing<br />
testing<br />
</div>
<div class="right">
testing<br />
testing<br />
testing<br />
testing<br />
</div>
</div>
</body>
</html>
Bookmarks