Guest User

Untitled

a guest
Dec 10th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. /* BAD: The following selectors should be avoided if possible */
  2.  
  3. .one .two .three .four { /* styles */ }
  4. .one ul li a { /* styles */ }
  5. .one ul a:hover { /* styles */ }
  6. .one ul li:first-child { /* styles */ }
  7.  
  8. /* BAD: Pre-processed nested selectors */
  9.  
  10. .one {
  11.  
  12. .two .three.four { /* styles */ }
  13. ul li a { /* styles */ }
  14.  
  15. }
  16.  
  17. /* GOOD: No more than 3 levels deep */
  18.  
  19. .one .four { /* styles */ }
  20. .one li a { /* styles */ }
  21. .one a:hover { /* styles */ }
  22. .one li:first-child { /* styles */ }
  23. .one a:hover { /* styles */ }
  24.  
  25.  
  26. /* ACCEPTIBLE: Discretion is advised */
  27. /* This is 4 levels, but the extra specificity may be preferable */
  28.  
  29. .one li a:hover { /* styles */ }
  30. .one li a.active { /* styles */ }
Add Comment
Please, Sign In to add comment