-2
<section class="flex">
<div><img src="fotocurriculum/moletom.jpg" alt="moletom"> Moletom Branco</div>
<div><img src="fotocurriculum/moletom.jpg" alt="moletom"> Moletom Branco</div>
<div><img src="fotocurriculum/moletom.jpg" alt="moletom"> Moletom Branco</div>
<div><img src="fotocurriculum/moletom.jpg" alt="moletom"> Moletom Branco</div>
<div><img src="fotocurriculum/moletom.jpg" alt="moletom"> Moletom Branco</div>
<div><img src="fotocurriculum/moletom.jpg" alt="moletom"> Moletom Branco</div>
</section>
css below:
img{
max-width: 10%;
display: block;
}
\*css flexbox*\
.flex{
display: flex;
flex-wrap: wrap;
max-width: 880px
margin: 0 auto;
}
.flex > div {
flex: 1 1 200px;
margin: 10px;
I’m trying to align the images side by side, getting 3 images on top and 3 below as if it were a store page, displaying products
Important you [Dit] your question and explain objectively and punctually the difficulty found, accompanied by a [mcve] of the problem and attempt to solve. To understand what kind of question serves the site and, consequently, avoid closures and negativities worth reading What is the Stack Overflow and the Stack Overflow Survival Guide (summarized) in Portuguese.
– Bacco