Design comparison
SolutionDesign
Solution retrospective
I use scss, I need feedback for improvement :) thank you
Community feedback
- @Luis15HerrPosted over 2 years ago
Very good work! I recommend you read about the bem methodology. Currently your scss code looks like this, example:
.main{ div1{ div2{ div3{ } } } }
With the bem methodology you maintain the specificity of your classes, making it much easier to maintain the code.
Example of bem metodology with sames clases from above:
.main{...} .main__div1{...} .main__div2{...}
This way it will be much easier for you to make your css code :)
Marked as helpful0@gidhub48Posted over 2 years ago@Luis15Herr thank you for the advice, I would try to use bem
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