Answer the question
In order to leave comments, you need to log in
How to center an image with flexbox?
How to center an image with flexbox?
That's what I wanted
<div class="about">
<div class="abou__item">
<span>about</span>
<img src="img/about1.jpg" alt="">
</div>
<div class="abou__item">
<img src="img/about2.jpg" alt="">
<span>about</span>
</div>
<div class="abou__item">
<span>about</span>
<img src="img/about3.jpg" alt="">
</div>
<div class="abou__item">
<span>about</span>
<img src="img/about4.jpg" alt="">
</div>
</div>
.about {
display: flex;
flex-direction: column;
align-items: center;
}
Answer the question
In order to leave comments, you need to log in
<span>about</span>
make it fixed width + add a second on the other side and make it opacity: 0
<div class="abou__item">
<span>about</span>
<img src="img/about2.jpg" alt="">
<span style="opacity: 0;">about</span>
</div>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question