By using the css visibility
property, you have the ability to set it to collapse
for specific table rows.
Nevertheless, there are two methods to accomplish this task. The first is to implement the logic on the <tr>
element:
thead > tr {
visibility: collapse;
}
Alternatively, you can apply the logic to each individual cell:
thead > th {
visibility: collapse;
}
Are there any potential issues associated with these two approaches?