167496-1.html (802B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2 <html> 3 <head> 4 <meta http-equiv="content-type" 5 content="text/html; charset=ISO-8859-1"> 6 <title>table border/css test</title> 7 <style type="text/css"> 8 <!-- 9 table { 10 border: 1px solid blue; 11 border-collapse: collapse; 12 } 13 14 th { 15 border: 1px outset silver; 16 } 17 18 td { 19 border: 1px outset silver; 20 } 21 --> 22 </style> 23 </head> 24 <body> 25 26 <table border="1"> 27 <tbody> 28 <tr> 29 <th>Table-header</th> 30 <th>Table-header</th> 31 <th>Table-header</th> 32 </tr> 33 <tr> 34 <td>Table-data</td> 35 <td>Table-data</td> 36 <td>Table-data</td> 37 </tr> 38 <tr> 39 <td>Table-data</td> 40 <td>Table-data</td> 41 <td>Table-data</td> 42 </tr> 43 </tbody> 44 </table> 45 </body> 46 </html>