
Design comparison
Solution retrospective
I was quite proud of being able to solve a problem in a different way. I tried to make the social media links using a <ul>, but I couldn't. I plan to try again at another time.
What challenges did you encounter, and how did you overcome them?The challenge was to use the <ul>, but I haven't been able to overcome it yet. I set this tag aside and used a <div>.
What specific areas of your project would you like help with?I would like feedback on the entire project, both the responsiveness and the code structure.
Community feedback
- @asia272Posted 12 days ago
This will ensure proper centering and alignment.
body {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box; }
-
Remove the specified
width: 384px
; from your .conteudo section because it restricts flexibility and makes your layout less responsive. -
Instead, use
max-width: 384px;
to allow it to adjust dynamically. -
Also, remove the height from
.conteudo
and use padding instead for better spacing. -
Remove the unnecessary
margin: 8% auto
; and use a better centering approach. -
Implement media queries to improve responsiveness on different screen sizes.
For example
:
@media (max-width: 400px) {
.conteudo {
width: 100%;
}
}
Benefits of These Changes:
-
Better Responsiveness:
The section will adapt to different screen sizes.More Flexibility:
Using max-width instead of width allows dynamic adjustments. -
Proper Centering:
Using flexbox ensures proper vertical and horizontal alignment. -
Cleaner Layout:
Removing extra margins prevents layout issues.
What is the Benefit of
box-sizing: border-box;
-
The box-sizing: border-box; property ensures that:
-
Padding and border are included within the total width and height of an element.
-
Prevents unexpected size changes when adding padding or borders.
Your solution is well-structured and effective! Keep coding, and happy coding!
Marked as helpful1 -
- @ingenierobustamantePosted 17 days ago
ya me siento seguro en el manejo de html y he avanzado bastante en css
2
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