blob: a98636702b1d74a01228c4525b79e582e96f5141 [file] [log] [blame]
<!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>
<title>CSS Test: There may be gaps between column groups in the separated borders model</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#table-layout" />
<meta name="flags" content="may" />
<meta name="assert" content="In the separated borders model, there may be gaps between column groups." />
<style type="text/css">
table
{
background: blue;
border-collapse: separate;
border-spacing: 3px 0;
}
colgroup
{
background: black;
}
td
{
height: 2em;
width: 2em;
}
</style>
</head>
<body>
<p>Test passes if the box below has blue vertical lines running through it (no horizontal lines).</p>
<table>
<colgroup>
<col />
<col />
<col />
</colgroup>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</body>
</html>