srob12 / f1-3-c2p1-colmar-academy

0 stars 0 forks source link

chained selectors #4

Closed rimmesbe closed 6 years ago

rimmesbe commented 6 years ago

Try to limit your selector chains (how many selectors you use together to target a specific one). Here you are chaining 3, 4 and even 5 selectors together. This is way too many, the more you chain the less reusable and more rigid your code becomes. A slight change to the website will break these stylings. Try to limit yourself to 2 chained selectors and if you need more just make a new class for that component.

https://github.com/srob12/f1-3-c2p1-colmar-academy/blob/master/Capstone%20Project/style.css#L364

srob12 commented 6 years ago

Thanks!