I'm using Bootstrap in a project and I want to center a text in some columns of my table.
So I use a class, specified in my tag :
<td class="col_etat" rowspan="4"> MyContent </td>
In my CSS I have :
.col_etat {vertical-align: middle;}
And it doesn't work, we can see that the class in Bootstrap CSS is "over" my class :
(https://i.sstatic.net/LlSoW.png)
It works if I do it without a CSS, but it's not what I want :
<td style="vertical-align: middle;" rowspan="4"> MyContent </td>
If someone knows what I have to do to make it works !