so Ive some issues with a bootstrap's table. TH dont align, and i dont know what to do.
the result is like this table:
my CSS is a simple
#tabela{
text-align: center;
}
if you are using bootstrap give a class of text-center in th:
<th class="text-center">Content</th>
Set the property text-align on the TH element directly to overwrite bootstraps styling.
#tabela tr th,
#tabela tr td {
text-align: center;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With