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 set to zero with no units with a plus sign, +0</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 to the minimum value with an integer, regardless of the positive sign on it." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
table
{
border-spacing: +0;
font: 20px/1 Ahem;
}
td
{
padding: 0;
}
</style>
</head>
<body>
<p>Test passes if there is only one box below this line.</p>
<table>
<tr>
<td>XXXXX</td>
<td>XXXXX</td>
</tr>
</table>
</body>
</html>