494667-2.html (379B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <style> 5 table { 6 border-collapse: collapse; 7 background-color: red; 8 } 9 td, th { 10 background-color: lime; 11 width:100px; 12 height:100px; 13 border:4px solid lime; 14 box-sizing:border-box; 15 } 16 td { 17 border-top:hidden; 18 } 19 </style> 20 </head> 21 <body> 22 <table cellpadding="0"> 23 <tr><th colspan="2"></th></tr> 24 <tr><th></th><td></td> 25 </table> 26 </body> 27 </html>