Design comparison
Solution retrospective
I am open for every comment.
Community feedback
- @danielmrz-devPosted 10 months ago
Hello @mehalimes!
Your solution looks awesome!
I noticed that you've used a lot of Id's on your project. I recommend you use classes too. It's good to reuse parts of your code. You just have to understand their differences. Here's a quick guide on how to use them:
IDβs are unique
π Each element can have only one ID.
π Each ID can have an unlimited amount of Styles applied to it.
π Each page can have only one element with that ID.
π IDs use β#β in the CSS which can also be used as an identifier for HTML βJump Linksβ (hyperlinks). This allows you to jump from one place to another on the same web page and can also be used in creating a well-designed Table of Contents.
Classes are not unique
π You can use the same Class on multiple elements.
π Class naming is case sensitive.
π Classes use a β.β in front of the name in the CSS.
π Each Class can have an unlimited amount of Styles applied to it.
π You can use multiple classes on the same element.
I hope it helps!
Other than that, you did an excellent job!
Marked as helpful0
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