border-conflict-resolution.html (1181B)
1 <!doctype html> 2 <title>CSS Test: Table border resolution rules</title> 3 <link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez"> 4 <link rel="author" href="https://mozilla.org" title="Mozilla"> 5 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1520138"> 6 <link rel="help" href="https://drafts.csswg.org/css2/tables.html#border-conflict-resolution"> 7 <link rel="match" href="border-conflict-resolution-ref.html"> 8 <style> 9 table { 10 font-size: 2em; 11 border-collapse: collapse; 12 border: 5px solid green; 13 } 14 </style> 15 16 <p>You should see no non-solid borders and no red.</p> 17 18 <table> 19 <tr> 20 <td colspan="4" style="border: 5px solid purple;">hello</td> 21 </tr> 22 <tr> 23 <td style="border-top: 5px solid blue; border-right: 5px solid blue; border-bottom: 9px hidden red; border-left: 9px none;">one</td> 24 <td style="border-top: 5px dashed blue; border-right: 5px solid blue; border-bottom: 5px outset red;">two</td> 25 <td style="border-top: 5px ridge blue; border-right: 5px ridge red; border-bottom: 5px inset red;">three</td> 26 <td style="border-left: 5px solid blue; border-bottom: 5px dotted red;">four</td> 27 </tr> 28 </table>