<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color:#E7E9EB;
}
#myDIV {
height:300px;
background-color:#FFFFFF;
}
#myTable {
width:100%;
table-layout: fixed;
}
</style>
</head>
<body>
<h1>The table-layout property</h1>
<div id="myDIV">
<table id="myTable" border="1" cellpadding="3">
<tr>
<td>cell</td>
<td>cell</td>
<td>A table cell</td>
<td>A table cell</td>
</tr>
<tr>
<td>cell</td>
<td>cell</td>
<td>A table cell</td>
<td>A table cell</td>
</tr>
<tr>
<td>cell</td>
<td>cell</td>
<td>A table cell</td>
<td>A table cell</td>
</tr>
<tr>
<td>cell</td>
<td>cell</td>
<td>A table cell</td>
<td>A table cell</td>
</tr>