Design comparison
Solution retrospective
Aprender de mejor manera flex box
What challenges did you encounter, and how did you overcome them?La separación de los elementos dentro de la card
What specific areas of your project would you like help with?Responsive
Community feedback
- @AdrianoEscarabotePosted about 1 month ago
Hi EIVAR-RIVALDO-PEREZ-AGUILAR, hope you're doing well! I loved how your project turned out, but I’ve got a few suggestions that could be useful:
Using Flexbox or Grid on the
body
to center elements ensures a more responsive and adaptive layout, fitting different screen sizes seamlessly. It avoids manual calculations and constant adjustments needed withmargin
,padding
, or absolute positioning. These techniques provide more consistent alignment and simplify the code.flexbox:
body { display: flex; justify-content: center; align-items: center; min-height: 100vh; }
grid:
body { display: grid; place-content: center; min-height: 100vh; }
The rest is fantastic.
Hopefully, you'll find it helpful. 👍
Marked as helpful1@EIVAR-RIVALDO-PEREZ-AGUILARPosted 26 days ago@AdrianoEscarabote tienes razon graciass!!!!
0@EIVAR-RIVALDO-PEREZ-AGUILARPosted 26 days ago@AdrianoEscarabote tienes razon graciass!!!!
0 - @JammiMPosted about 1 month ago
Needs more testing on mobile screens
For example there is no spacing / margin from the right side of the screen
Marked as helpful0 - @gckushPosted about 1 month ago
Separate style to a css file. Without it, html has become less readable. Text 'HTML & CSS foundations' should change color to Yellow on mouse hover. No main section.
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