OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <body> |
| 4 <table style="width:700px"> |
| 5 <tr> |
| 6 <td>top</td> |
| 7 <td style="width:400px"> |
| 8 <b style="border:solid;"> |
| 9 <i style=" |
| 10 background-color:green; |
| 11 margin: -30px 0px 0px 0px; |
| 12 padding: 1px 0px 0px 0px;"> |
| 13 Here is some text. |
| 14 </i> |
| 15 </b> |
| 16 </td> |
| 17 </tr> |
| 18 </table> |
| 19 |
| 20 <table style="width:700px"> |
| 21 <tr> |
| 22 <td>right</td> |
| 23 <td style="width:400px"> |
| 24 <b style="border:solid; |
| 25 border-color:white"> |
| 26 <i style=" |
| 27 background-color:green; |
| 28 margin: 0px -208px 0px 0px; |
| 29 padding: 0px 1px 0px 0px;"> |
| 30 Here is some text. |
| 31 </i> |
| 32 </b> |
| 33 </td> |
| 34 </tr> |
| 35 </table> |
| 36 |
| 37 <table style="width:700px"> |
| 38 <tr> |
| 39 <td>bottom</td> |
| 40 <td style="width:400px"> |
| 41 <b style="border:solid;"> |
| 42 <i style=" |
| 43 background-color:green; |
| 44 margin: 0px 0px -30px 0px; |
| 45 padding: 0px 0px 1px 0px;"> |
| 46 Here is some text. |
| 47 </i> |
| 48 </b> |
| 49 </td> |
| 50 </tr> |
| 51 </table> |
| 52 |
| 53 <table style="width:700px"> |
| 54 <tr> |
| 55 <td>left</td> |
| 56 <td style="width:400px"> |
| 57 <b style="border:solid; |
| 58 border-color:white"> |
| 59 <i style=" |
| 60 background-color:green; |
| 61 margin: 0px 0px 0px -208px; |
| 62 padding: 0px 0px 0px 31px;"> |
| 63 Here is some text. |
| 64 </i> |
| 65 </b> |
| 66 </td> |
| 67 </tr> |
| 68 </table> |
| 69 </body> |
| 70 </html> |
OLD | NEW |