Submitted about 1 year ago
Responsive testimonial page using CSS grid
@CaitlinECataldo
Design comparison
SolutionDesign
Community feedback
- @hatwell-jonelPosted about 1 year ago
Hi! Great work, I saw your work and I have some suggestion that can possibly improve your work.
- I think you should store all your image in one folder directory for much cleaner. file structure for your projects.
- the in testimonials class the grid-template-columns, it much better if you just use "grid-template-columns: repeat(6, auto)."
.testimonials { display: grid; grid-template-columns: auto auto auto auto auto auto; } .testimonials { display: grid; grid-template-columns: repeat(6, auto); }
Keep coding. 👍👍👍
Marked as helpful1
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord