Örnek
<style> table, td , th {border: 1px solid #000;} </style> <table> <tr> <th>Ay</th> <th>Gider</th> </tr> <tr> <td>şubat</td> <td>100 TL</td> </tr> </table>
Bu etiket HTML tablosunda başlık hücresini tanımlamak için kullanılır.
Codepen Ön izleme
<style>
table, td , th {border: 1px solid #000;}
</style>
<table>
<tr>
<th>Ay</th>
<th>Gider</th>
</tr>
<tr>
<td>şubat</td>
<td>100 TL</td>
</tr>
</table>
See the Pen HTML th tag by W3TR (@w3tr) on CodePen.