Is it possible to have normal text in the cells of a Bootstrap 4 table without bold formatting? Using font-weight doesn't seem to be working for me.
<div class="row col-md-10 px-4 py-3 ">
<table id="ServiceTable" class="table table-hover table-striped">
<tbody>
<tr>
<th colspan="3">Title</th>
<td class="text-right">
<button type="button" class="btn btn-primary px-4 btn-sm">Learn more</button>
</td>
</tr>
<tr>
<td colspan="2">date_isodate_set</td>
<td colspan="2">Thornton</td>
</tr>
<tr>
<td colspan="2">Hii</td>
<td colspan="2">Larry the Bird</td>
</tr>
</tbody>
</table>
</div>
CSS:
#ServiceTable td {
font-weight: 400;
}
https://i.sstatic.net/bFzqh.png
Head:
https://i.sstatic.net/F8kq2.png
Whole css: