I centered my text vertically, Now i need to center it horizontaly to.
Did i miss something or its not possible to do text-center
when i have display: flex;
and align-items: center;
<div class="row">
<div class="bild text-center">
<h2 class="vit text-center">Mobiltelefoner & Surfplattor</h2>
<img src="https://www.zong.com.pk/images/uploads/misc/4.internationalcalls_desktop-Banner.jpg" style="visibility: hidden;">
</div>
</div>
CSS
div.bild {
width: 100%;
background: url('https://www.zong.com.pk/images/uploads/misc/4.internationalcalls_desktop-Banner.jpg') no-repeat center center;
background-size:100% auto;
display: flex;
align-items: center;
}