Submitted over 1 year ago
Responsive Result Summary Component Preview using grid,flex,em,rem
@KyleIsaacMendoza
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
- @minnaingkokoPosted over 1 year ago
Great Job! Keep going.
Marked as helpful0 - @0xabdulkhaliqPosted over 1 year ago
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
with1440px
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
with56.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 helpful0@KyleIsaacMendozaPosted over 1 year ago@0xAbdulKhalid Ohh i see, Thank you and i'll take note on that.
0
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