| OLD | NEW | 
|   1 <!DOCTYPE html> |   1 <!DOCTYPE html> | 
|   2 <html> |   2 <html> | 
|   3     <head> |   3     <head> | 
|   4         <style> |   4         <style> | 
|   5             body { zoom: 1.5; } |   5             body { zoom: 1.5; } | 
|   6             #head { height: 35px; } |   6             #head { height: 35px; } | 
|   7             table { background: red; margin-top: 25px; } |   7             table { background: red; margin-top: 25px; } | 
|   8             td { background: white; } |   8             td { background: white; } | 
|   9         </style> |   9         </style> | 
|  10     </head> |  10     </head> | 
|  11     <body> |  11     <body> | 
|  12         <table cellpadding="0" cellspacing="0" width="100%"> |  12         <table cellpadding="0" cellspacing="0" width="100%"> | 
|  13             <tr> |  13             <tr> | 
|  14                 <td style="height:21px">first row</td> |  14                 <td style="height:21px">first row</td> | 
|  15             </tr> |  15             </tr> | 
|  16             <tr> |  16             <tr> | 
|  17                 <td>second row</td> |  17                 <td>second row</td> | 
|  18             </tr> |  18             </tr> | 
|  19         </table> |  19         </table> | 
|  20         There should be no red line between the rows. |  20         There should be no red line between the rows. | 
|  21     </body> |  21     </body> | 
|  22 </html> |  22 </html> | 
| OLD | NEW |