File: col3.htm - Tab length: 1 2 4 8 - Lines: on off - No wrap: on off<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml;charset=UTF-8" />
<title>Column Layout Test</title>
<style type="text/css">
body
{
padding : 16px;
margin : 0px;
}
div.container
{
border : 4px solid black;
}
table.columns
{
border : 4px solid red;
border-collapse : collapse;
}
table.columns td
{
vertical-align : top;
}
table.columns td.left
{
border : 4px solid blue;
width : 150px;
}
table.columns td.right
{
border : 4px solid green;
}
</style>
</head>
<body>
<div class="container">
<table class="columns">
<tr>
<td class="left">left</td>
<td class="right" style="height:400px;">right</td>
</tr>
</table>
</div>
</body>
</html>