I have this simple HTML code (with Bootstrap) :
<div id="accordion">
<div class="card">
<div class="card-header" id="@itm.Id">
<div class="row">
<div class="col-2 border rounded text-center">
text to center
</div>
<div class="col-2 border rounded text-center">Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute
</div>
</div>
</div>
</div>
</div>
I just want to vertically center the text "text to center" in the div, keeping the border as it is in the exemple (no height decrease).
I have tried things such my-auto or align-items-middle, also read questions asked before, but without success.
If possible I don't want to add classes (use existing bootstrap).
Here is the Fiddle : Vertically center text