Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<head>
<title>CSS Test: Fixed table width is maximum between table and sum of column 'width' (table width wins)</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<meta name="assert" content="A fixed layout table's width will be its specified width if that width is greater than the sum of its columns' widths." />
<style type="text/css">
table
{
border-spacing: 0;
table-layout: fixed;
}
td
{
background: black;
padding: 0;
width: 50px;
}
#div1
{
background: blue;
height: 1em;
}
#div1, table
{
width: 200px;
}
</style>
</head>
<body>
<p>Test passes if the boxes below are the same width.</p>
<table>
<tr>
<td>X</td>
<td>X</td>
</tr>
</table>
<div id="div1"></div>
</body>
</html>