Answers for "table header"

5

table fixed header

.tableFixHead thead th { position: sticky; top: 0; }
Posted by: Guest on July-12-2020
1

html header for all the table

<th colspan="3">    </th>
Posted by: Guest on July-19-2021
0

html tables

<table></table>
    <td></td> <!-- td is a table cell-->
    <tr></tr> <!-- tr is a table row-->
    <th></th> <!-- th is the table header -->
    <thead></thead><tbody></tbody><tfoot></tfoot> <!-- table semantic -->
    <tr rowspan="2"></tr><!-- Span a row -->
    <tr colspan="2"></tr><!-- Span a column -->
Posted by: Guest on January-05-2021

Browse Popular Code Answers by Language