/* Set the size of each grid item */ .your-photo-grid-class .grid-item { width: 25%; /* Each item will take up 25% of the grid container */ padding: 0; margin: 0; box-sizing: border-box; } /* Adjust the spacing between grid items (optional) */ .your-photo-grid-class .grid-item { margin-right: 2%; /* Adjust as needed */ } /* Clear margin for the last item in each row */ .your-photo-grid-class .grid-item:nth-child(4n) { margin-right: 0; } /* Ensure the images fill the grid items */ .your-photo-grid-class .grid-item img { width: 100%; height: auto; }