Responsive social links profile component built with HTML and CSS
Design comparison
Solution retrospective
- Is my component responsive?
- Is my HTML well written, or do I miss something?
- Is my CSS files structure well organized?
Community feedback
- @Alex-Archer-IPosted 5 months ago
Hi!
You did a decent work, but there are could be a couple of semantic improvements =)
Every page should contain
main
tag. Since this project is quite simple it could be the.card
element. Alsoa
should be insideli
, not vice versa.And I recommend you use this trick for better responsibility.
.card { width: 95%; max-width: 24rem; }
It will keep your container
24rem
in the big screens and allow it to adjust on the small ones. You can omitwidth
if you want that element to take 100% of mobile screen. That way give you a bit more control of the container width, because for now it depends of the biggest element inside (p
in your case).Oh, and you can use
text-decaration: none
to links to get rid of underlines =)Hope that helps =)
Marked as helpful1
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