494667-1.html (363B)
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 box-sizing:border-box; 14 } 15 td { 16 border-top: 4px solid lime; 17 } 18 </style> 19 </head> 20 <body> 21 <table cellpadding="0"> 22 <tr><th colspan="2"></th></tr> 23 <tr><th></th><td></td> 24 </table> 25 </body> 26 </html>