Mode:
Duration:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 1rem;
padding: 1rem;
}
.gallery img {
width: 100%;
border-radius: 8px;
transition: transform 0.3s ease;
}
.gallery img:hover {
transform: scale(1.05);
}Coding works best on desktop or with an external keyboard.