<!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 rows 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 border model, there may be gaps between rows." /> <style type="text/css"> table { background: blue; border-collapse: separate; border-spacing: 0 3px; } tr { background: black; } td { height: 2em; width: 2em; } </style> </head> <body> <p>Test passes if the box below has blue horizontal lines running through it (no vertical lines).</p> <table> <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>