gallery4

no image

.gallery-container { display: grid; grid-template-rows: repeat(3, 150px); /* 3 rows with fixed height */ grid-auto-flow: column; /* Fill columns first */ gap: 15px; justify-content: start; padding: 20px; background-color: #f9f9f9; } .gallery-item { background: white; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); padding: 10px; text-align: center; } .gallery-item img { max-height: 100px; border-radius: 4px; display: block;…