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

Responsive Social Proof Section

@lucas-merino-dev

Desktop design screenshot for the Social proof section coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


I will improve this design and try to use CSS grid instead of floating boxes... Any advices?

Community feedback

@j3rgus

Posted

Hello @lucas-merino-dev.

One way to do it using CSS grid is to split main layout into three parts where the top left one is title, top right one is rates and the bottom one is social:

.main-layout {
  display: grid;
  grid-template:
    "title rates" 1fr "social social" 1fr / 1fr 1fr;
}

Individual parts then can be positioned by flex (or grid too) using align-items or justify-content, such as:

#rates {
  grid-area: rates;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 85%;
}

and first and last children can be adapted to design by:

#rates:first-child {
  align-self: start;
}
#rates:last-child {
  align-self: end;
}

Making it responsive you can then change the grid template to follow the column ordering:

.main-layout {
  grid-template:
    "title" auto
    "rates" auto
    "social" auto
    "social" auto / minmax(300px, 1fr);
}

And then change the individual parts of grid (rates and social) to follow column ordering. You can also set width to 100% to fill up the whole horizontal space so that the aligning using first-child and last-child is cancelled.

Marked as helpful

0

@lucas-merino-dev

Posted

Omg u helped me so much! I never heard of that possibility, thank you for your time and feedback!

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