I have a table with several columns and I need the first column to be fixed in the table . However, all of the "ready" solutions I found solve by creating two tables, which is inaccessible.
I need the result exactly as this plugin link does. However, without creating a new HTML structure, let alone dividing the content into two tables, which makes everything inaccessible.
I've also tried using position: absolute in the first column, but then the height of the lines does not look the same.
Has anyone ever had this need or need anything like this?
The table is a normal table:
<table>
<thead>
<tr>
<th>Aluno</th>
<th>Aula 1</th>
<th>Aula 2</th>
<th>Aula 3</th>
<th>Aula 4</th>
<th>Aula 5</th>
<th>Aula 6</th>
<th>...</th>
</tr>
</thead>
<tbody>
<tr>
<td>Fábio Rocha</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
</tbody>
</table>