Testimonials grid section- First practice using GRID

Solution retrospective
Hi everyone. This is my first time using GRID. I would love if you give me feedback about the code. I really appreciated it.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @SJ-Nosrat
Hi Luis, Wonderful solution! Looks perfect to me!
For your background-pattern-quotation-marks I'd add it as a
background-image
as it gives more control to position it, as follows:.testimonial-1 { /* ADD THE BELOW CODE */ background-color: var(--moderate-violet); background-image: url(/*your path here*/); background-repeat: no-repeat; background-position: top right 1.5rem; }
Your use of the
grid-template-areas
is really great; although you can remove the following code:grid-template-rows: repeat(2, auto);
as CSS Grid will put them in implicitly.Once again super job!
Best of luck with your coding journey!
Marked as helpful
Join 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