I'm trying to change the name of a column in my table through css, I tried something like:
th#colunatableprod:nth-of-type(1):before { content: "Produto"!important; }
My table:
<table class="table">
<thead class="black white-text">
<tr>
<th id="colunatableprod" scope="col">Produto</th>
<th id="colunaindicelucro" scope="col">Índice de Lucro</th>
<th id="colunamlpremium" scope="col">ML Premium</th>
<th id="colunamlclassico" scope="col">ML Clássico</th>
</tr>
</thead>
<tr>
<td>x</td>
<td>y</td>
<td>z</td>
<td>aa</td>
</tr>
</table>