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: Border-spacing using centimeters with a minimum plus one value, 1cm</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<meta name="flags" content="ahem" />
<meta name="assert" content="Border-spacing can be set one above the minimum in centimeters." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div, table
{
font: 20px/1 Ahem;
}
div
{
background: black;
height: 1em;
left: 158px;
position: relative;
top: 1cm;
width: 1cm;
}
table
{
border-spacing: 1cm;
}
td
{
padding: 0;
}
</style>
</head>
<body>
<p>Test passes if the middle block is as wide as the space between the bars.</p>
<div></div>
<table>
<tr>
<td>XXXXXX</td>
<td>XXXXXX</td>
</tr>
</table>
</body>
</html>