I have a problem with float:left
<div class="gallery">
<img src="img.jpg" alt="">
<img src="img.jpg" alt="">
<img src="img.jpg" alt="">
</div>
How to center them all using float:left
.gallery {
margin: 0 auto;
}
.gallery > img {
display: block;
margin: 0 auto;
float: left;
}
Tried this and few others codes ex. used box-sizing:border-box but without result.
Seems like margin auto doesn't work after using float.
I know i can center that just using inline-block and text-align:center but i want to center them using float.
How i can fix this using float ?