Trying to center a div inside an image with flexbox (I only want flexbox), but since img does not have closing tag, I cannot make it work. How to do?
.uno {
display: flex;
justify-content: center;
align-items: center;
}
<div class="uno">
<img src="https://www.placecage.com/300/300" alt="">
<h1>Center this text</h1>
</div>
This puts my text in the center but to the right of the img. Only flexbox solutions.