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 Result Summary Component Preview using grid,flex,em,rem

KyleIsaacMendozaβ€’ 250

@KyleIsaacMendoza

Desktop design screenshot for the Results summary component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


I still find it difficult to build responsive and still need a bit of practice but someday i'll get the hang of it. I'm unsure on some CSS lines like If it's better to use grid on it or just do it manually. If there is anything I can improve, I'm glad to change it.

Community feedback

Min Naing Ko Koβ€’ 210

@minnaingkoko

Posted

Great Job! Keep going.

Marked as helpful

0

KyleIsaacMendozaβ€’ 250

@KyleIsaacMendoza

Posted

@minnaingkoko thank you

1
Abdul Khaliq πŸš€β€’ 72,660

@0xabdulkhaliq

Posted

Hello there πŸ‘‹. Congratulations on successfully completing the challenge! πŸŽ‰

  • I have other recommendations regarding your code that I believe will be of great interest to you.

CSS 🎨:

  • let me explain, How you can easily make the design as responsive.
  • The current media-query with 1440px has some disadvantages which lacks to responsive on certain laptop screens, it will only suited for desktops with larger moniter.
@media screen and (min-width: 1440px) {
     // Styles
}
  • Instead try this media-query with 56.25em, it ensures the device if more than tablet screen
@media screen and (min-width: 56.25em) {
      // Styles
}

.

I hope you find this helpful πŸ˜„ Above all, the solution you submitted is great !

Happy coding!

Marked as helpful

0

KyleIsaacMendozaβ€’ 250

@KyleIsaacMendoza

Posted

@0xAbdulKhalid Ohh i see, Thank you and i'll take note on that.

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