i’m trying to arrange photos using flex or grid but I can’t remove the gaps between photos no matter what I do… any help?
HMTL
HOW YOU CAN HELP
and here’s CSS
.pics {
margin-top: 2.5rem;
}
.pics ul {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(1fr, 2fr));
place-items: center;
grid-auto-flow: column;
gap: 0.1rem;
list-style: none;
width: 90%;
}
ul img {
border-radius: 0.5rem;
padding: 0;
margin: 0;
}