1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<!DOCTYPE HTML> <html> <head> <style> div.spacer {width:20px; height: 20px;} table {background-color: lime;} td {background-color: green;} </style> </head> <body> <table cellpadding="30px"><tr> <td> <div class="spacer"></div> </td></tr> </table> </body> </html>