| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | |
| <html> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> | |
| <style> | |
| div {border:solid green; position:absolute; top:150px;right:150px;width:60%} | |
| table {border:solid blue; width:60%} | |
| table.ab {position:absolute; top:200px;right:200px} | |
| </style> | |
| </head> | |
| <body> | |
| <table class="ab"> | |
| <tbody> | |
| <tr> | |
| <td>foo</td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| <table> | |
| <tbody> | |
| <tr> | |
| <td>foo</td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| <div>div</div> | |
| </body> | |
| </html> |