bootstrap centered text in td code example
Example 1: align ionic icons and text css
.icon {
display: inline-block;
font-size: 35px;
color: #ffC977;
vertical-align: middle;
}
.text{
display: inline-block;
vertical-align: middle;
}
Example 2: how to center text in css
.class {
text-align: center;
}