tHead ဂုဏ်သတ္တိ
tHead ဂုဏ်သတ္တိသည်
thead
ဇယား၏ ညွှန်းကိုးချက်ကို သိမ်းဆည်းထားသည်။
ဖွဲ့စည်းပုံ
ဇယား.tHead;
နမူနာ
ဇယား၏ခေါင်းစဉ်ကို အနီရောင်ဖြင့် ခြယ်ကြပါစို့:
<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>အနှစ်ချုပ်</td>
<td>အနှစ်ချုပ်</td>
<td>အနှစ်ချုပ်</td>
</tr>
</tfoot>
</table>
let table = document.querySelector('#table');
table.tHead.style.color = 'red';