Advertisement
Guest User

Untitled

a guest
Jul 28th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. .myclass {
  2. ...
  3.  
  4. &.otherClass > (div, ul, dl, table) {
  5. // define some rules...
  6. }
  7. }
  8.  
  9. .myclass.otherClass > div,
  10. .myclass.otherClass > ul,
  11. .myclass.otherClass > dl,
  12. .myclass.otherClass > table {
  13. // rules
  14. }
  15.  
  16. .myclass {
  17. ...
  18.  
  19. &.otherClass {
  20. > div, > ul, > dl, > table {
  21. // define some rules...
  22. }
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement