<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <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>