Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

Testimonial cards using grid and scss

P
Jaime 150

@Jaimealicante83

Desktop design screenshot for the Testimonials grid section coding challenge

This is a solution for...

  • HTML
  • CSS
2junior
View challenge

Design comparison


SolutionDesign

Solution retrospective


What are you most proud of, and what would you do differently next time?

I did in less than three hours working quietly. I would like to be more focused next time and do it faster.

What challenges did you encounter, and how did you overcome them?

To position the cards in the grid in the desktop version. I had to use different containers to position different elements, like name and position besides the image.

What specific areas of your project would you like help with?

How to improve the code efficiency.

Community feedback

P
Jan 160

@Negligence

Posted

Hi Jaime 👋🏻,

This is really great work for something done in less than three hours 👏🏻.

As for How to improve the code efficiency.

Here's a personal preference that I personally use that you're welcome to try out if you want:

  .container {
    grid:
    "a a b e" 
    "c d d e"
    ;
    grid-template-columns: repeat(4,  1fr);
  }

  .card__1 {grid-area: a;}
  .card__2 {grid-area: b;}
  .card__3 {grid-area: c;}
  .card__4 {grid-area: d;}
  .card__5 {grid-area: e;}

Marked as helpful

0

Please log in to post a comment

Log in with GitHub
Discord logo

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