border-collapse-empty-cell.html (581B)
1 <!doctype HTML> 2 <title>Collapsed borders of empty cells are painted</title> 3 <link rel="author" href="atotic@chromium.org"> 4 <link rel="match" href="border-collapse-empty-cell-ref.html"> 5 <link rel="help" href="https://stackoverflow.com/questions/18758373/why-do-the-css-property-border-collapse-and-empty-cells-conflict"> 6 <style> 7 table { 8 border-collapse: collapse; 9 empty-cells: hide; 10 } 11 td { 12 width:50px; 13 height:50px; 14 border: 10px solid gray; 15 } 16 </style> 17 <table> 18 <tr> 19 <td></td> 20 <td></td> 21 </tr> 22 <tr> 23 <td></td> 24 <td></td> 25 </tr> 26 </table>