2
I need to sweat the TD of the Steps and Circuits columns into two parts. The idea is that the word "Steps" appears in the TH and the values inserted in this column will be divided into <30 and > 30.
Etapas
<30 >30
1 2
5 6
How do I do this subdivision semantically? I’m using bootstrap to make the layout.
<div>
<table>
<thead>
<tr>
<th>
Fase
</th>
<th>
Descricão
</th>
<th>
Etapas
</th>
<th>
Circuitos
</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
</tbody>
</table>
</div>