1
Hello, good afternoon, would have some way to fix the col-Md where it was positioned without change?
I used to do it this way:
<div class="col-md-12">
<div class="col-md-4">
</div>
<div class="col-md-4">
</div>
<div class="col-md-4">
</div>
</div>
But now I need it to be this way:
<div class="col-md-12">
<div class="col-md-4">
</div>
<div class="col-md-4">
</div>
<div class="col-md-4">
</div>
<div class="col-md-4">
</div>
<div class="col-md-4">
</div>
<div class="col-md-4">
</div>
</div>
Because the appearance of the products is automatic and there is no way to add a new col-Md-12 to delimit the space.
I’d like it to be all right: http://prntscr.com/l1e8ql
But it is enough to have a size difference in the boxes or to close one that goes out of place: http://prntscr.com/l1e8z4
This goes for Faq questions as well: http://prntscr.com/l1e92q
It did not work! ( http://prntscr.com/l1wocw
– Rony Oliveira
@Ronyoliveira tried to put this on the outside div that will receive the contents?
.col-md-12 {
 display: flex;
 flex-wrap: wrap;
}
?– hugocsl
I tried again and it worked, thank you!!
– Rony Oliveira
@Ronyoliveira I’m glad it worked out. If my answer has helped you in any way consider marking it as you accept it on the left side next to the little arrows. Just click on it, so the question :)
– hugocsl
ready, scored :)
– Rony Oliveira