1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: Border Conflict Resolution (by element): row group vs. row group - element with highest priority is the dominant border</title>
5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
6 <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#border-conflict-resolution">
7 <meta name="flags" content="">
8 <meta name="assert" content="With adjacent elements (row group, row group) of same border-style and width, border collapsing favors the row group furthest to the top.">
9 <style type="text/css">
10 table
11 {
12 border-collapse: collapse;
13 height: 2in;
14 width: 2in;
15 }
16 tbody
17 {
18 border: 5px solid black;
19 }
20 .collapsing
21 {
22 border-top: 5px solid red;
23 }
24 </style>
25 </head>
26 <body>
27 <p>Test passes if there is no red visible on the page.</p>
28 <table>
29 <tbody>
30 <tr>
31 <td></td>
32 </tr>
33 </tbody>
34 <tbody class="collapsing">
35 <tr>
36 <td></td>
37 </tr>
38 </tbody>
39 <tbody class="collapsing">
40 <tr>
41 <td></td>
42 </tr>
43 </tbody>
44 </table>
45 </body>
46 </html>