Design comparison
Solution retrospective
i had tried to use SASS/SCSS for this project instead of simple CSS and tried writing semantic HTML.
What specific areas of your project would you like help with?Should I use less class names for elements when writing in sass or it's still easier to read with many class names specifically when writing in sass?
Community feedback
- @ricardoychinoPosted about 2 months ago
Hey, great solution!
As for your question, in my experience and it is kind of a consensus as far as I know that usually it is a good idea to use classes for styling. Classes makes the selection more specific, and also you can get a general idea of what the purpose of the rule you wrote. Think this way:
.profile-avatar { /* "Oh okay, this is CSS for profile avatar" */ ... } img { /* "What, which image?" (Imagine that in a real project you WILL have more than one eventually) */ }
In your solution, for example, there are some element selectors, but it is not that abstract, since they are nested in more specific selectors. So in my humble opinion you just did great.
The only thing that I would change is the rule for
*
. Separate them like this:* { box-sizing: border-box; } body { margin: 0; padding: 0; font-size: 14px; font-family: "Inter", sans-serif; } /* This one depends on the project: */ ul { list-style-type: none; }
The
*
will apply the properties on every single element unnecessarily. Thebox-sizing
is a good idea to apply, but the others like font properties will be inherited anyway; and if you decide to use a<small>
for example, thefont-size: 14px;
will be applied to it, which is not a good idea. About the box model properties, I actually am not sure if there's any problem applying the reset on*
, but usually they are already 0s, so if you want to reset them, reset only where it is needed.Anyway, just my thoughts. Good job and keep it up
1@oshaxgioPosted about 2 months ago@ricardoychino thanks for explaining and detailed feedback))
1
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