I have a column div that I need to center the text in
Here is my code:
<div class="card mb-4">
<div class="card-header">
<div class="card-title-wrap bar-info">
<div class="card-title">Personal Information</div>
</div>
</div>
... (Code continues)
Currently, it looks like this:
https://i.sstatic.net/jlx8z.png
The issue is that I need to center the ID and AGE Text in the middle of my card. They are aligned to the left now, but I want them centered. I have tried using text-align: center, but it's not working.