Creating a bootstrap table with columns and rows:
<tr class="d-flex">
<td class="col">Voornaam</td>
<td class="col">Sean</td>
</tr>
When trying to center the elements, it looks like this: centered td element with partial background
It seems like the issue lies in the way bootstrap applies the table-striped class. I have tried adjusting the CSS properties without success so far.
I am new to working with bootstrap, any help or guidance is appreciated! Thank you!