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): column 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 embedded elements (column group, row group) of same border-style and width, border collapsing favors the row group.">
9 <style type="text/css">
10 table
11 {
12 border-collapse: collapse;
13 height: 2in;
14 width: 2in;
15 }
16 colgroup
17 {
18 border: 5px solid red;
19 }
20 tbody
21 {
22 border: 5px solid black;
23 }
24 </style>
25 </head>
26 <body>
27 <p>Test passes if there is no red visible on the page.</p>
28 <table>
29 <colgroup>
30 <col>
31 </colgroup>
32 <tbody>
33 <tr>
34 <td></td>
35 </tr>
36 </tbody>
37 </table>
38 </body>
39 </html>