Xüsusiyyət tFoot
Xüsusiyyət tFoot cədvəlin
tfoot
hisssəsinə istinadı saxlayır.
Sintaksis
cedvel.tFoot;
Nümunə
Cədvəlin footer hissəsini qırmızı rəngə boyayaq:
<table id="table">
<thead>
<tr>
<th>header1</th>
<th>header2</th>
<th>header3</th>
</tr>
</thead>
<tbody>
<tr>
<td>value</td>
<td>value</td>
<td>value</td>
</tr>
<tr>
<td>value</td>
<td>value</td>
<td>value</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>cəm</td>
<td>cəm</td>
<td>cəm</td>
</tr>
</tfoot>
</table>
let cedvel = document.querySelector('#table');
cedvel.tFoot.style.color = 'red';