tFoot ဂုဏ်သတ္တိ
tFoot ဂုဏ်သတ္တိသည် ဇယား၏
tfoot
သို့ လင့်ခ်တစ်ခုကို သိမ်းဆည်းထားသည်။
ဝါကျဖွဲ့ပုံ
ဇယား.tFoot;
နမူနာ
ဇယား၏ footer ကို အနီရောင်ခြယ်ကြပါစို့။
<table id="table">
<thead>
<tr>
<th>ခေါင်းစီး 1</th>
<th>ခေါင်းစီး 2</th>
<th>ခေါင်းစီး 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>တန်ဖိုး</td>
<td>တန်ဖိုး</td>
<td>တန်ဖိုး</td>
</tr>
<tr>
<td>တန်ဖိုး</td>
<td>တန်ဖိုး</td>
<td>တန်ဖိုး</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>စုစုပေါင်း</td>
<td>စုစုပေါင်း</td>
<td>စုစုပေါင်း</td>
</tr>
</tfoot>
</table>
let table = document.querySelector('#table');
table.tFoot.style.color = 'red';