Answers for "bootstrap text in middle"

8

centre text bootstrap

<div class = "text-center">

	<p> hello world</p>


</div>
Posted by: Guest on March-23-2021
0

bootstrap table text vertical align center

/* Based on what you have provided your CSS selector is not specific enough to 
override the CSS rules defined by Bootstrap.

Try this:
*/

.table > tbody > tr > td {
     vertical-align: middle;
}

/*
In Boostrap 4, this can be achieved with the .align-middle Vertical 
Alignment utility class.
*/
<td class="align-middle">Text</td>
Posted by: Guest on November-07-2020

Code answers related to "bootstrap text in middle"

Browse Popular Code Answers by Language