0

I need boxes that text in the center. I tried px classes but it doesn't work. it's near but not exactly center. which bootstrap class can ı use in this subject ? enter image description here

Ali
  • 305
  • 3
  • 14

1 Answers1

1

One of the easiest way to center things in bootstrap is to use flex:

<div class="d-flex align-content-center align-items-center">
  <span>Your Text</span>
</div>
Teej
  • 12,764
  • 9
  • 72
  • 93