I'm having trouble centering text in a bootstrap column. I've attempted various methods like "align-items-center", margin auto, and display: table but haven't been successful. I've also searched through similar questions on this platform with no luck.
.fakeimg {
height: 200px;
background: #aaa;
}
#fake {
margin: 0 auto;
text-align: center
<div class="container" style="margin-top:30px">
<div class="row align-items-center">
<div class="col-sm-8">
<div id="fake" class="fakeimg">Please center me vertically</div>
</div>