| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title>th with float</title> | 3 <title>th with float</title> |
| 4 <style type="text/css" media="screen"> | 4 <style type="text/css" media="screen"> |
| 5 table { | 5 table { |
| 6 border: 1px solid black; | 6 border: 1px solid black; |
| 7 } | 7 } |
| 8 | 8 |
| 9 th { | 9 th { |
| 10 float: left; | 10 float: left; |
| 11 } | 11 } |
| 12 | |
| 13 td { | |
| 14 float: right; | |
| 15 } | |
| 16 </style> | 12 </style> |
| 17 </head> | 13 </head> |
| 18 <body> | 14 <body> |
| 19 | 15 |
| 20 <table> | 16 <table> |
| 21 <thead> | 17 <thead> |
| 22 <tr><th>Head 1</th><th>Head 2</th></tr> | 18 <tr><th>Head 1</th><th>Head 2</th></tr> |
| 23 </thead> | 19 </thead> |
| 24 <tfoot> | 20 <tfoot> |
| 25 <tr><td>Footer 1</td><td>Footer 2</td></tr> | 21 <tr><td>Footer 1</td><td>Footer 2</td></tr> |
| 26 </tfoot> | 22 </tfoot> |
| 27 <tbody> | 23 <tbody> |
| 28 <tr><td>Cell 1</td><td>Cell 2</td></tr> | 24 <tr><td>Cell 1</td><td>Cell 2</td></tr> |
| 29 <tr><td>Cell 3</td><td>Cell 4</td></tr> | 25 <tr><td>Cell 3</td><td>Cell 4</td></tr> |
| 30 </tbody> | 26 </tbody> |
| 31 </table> | 27 </table> |
| 32 | 28 |
| 33 | 29 |
| 34 </body> | 30 </body> |
| 35 </html> | 31 </html> |
| OLD | NEW |