Guest User

Untitled

a guest
Dec 17th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. h3 {
  2. font-size: 20px
  3. margin-bottom: 10px
  4.  
  5. .some-parent-selector & {
  6. font-size: 24px
  7. margin-bottom: 20px
  8. }
  9. }
  10.  
  11. h3 {
  12. font-size: 20px;
  13. margin-bottom: 10px;
  14. }
  15. .some-parent-selector h3 {
  16. font-size: 24px;
  17. margin-bottom: 20px;
  18. }
  19.  
  20. .some-parent-selector {
  21. font-size: 24px
  22. margin-bottom: 20px
  23.  
  24. a& {
  25. ...
  26. }
  27. }
  28.  
  29. .some-parent-selector {
  30. font-size: 24px
  31. margin-bottom: 20px
  32. }
  33. a.some-parent-selector {
  34. ...
  35. }
  36.  
  37. .some-parent-selector {
  38. font-size: 24px;
  39. margin-bottom: 20px;
  40.  
  41. a#{&}{
  42. margin-bottom: 20px
  43. }
  44. }
  45.  
  46. .some-parent-selector {
  47. font-size: 24px;
  48. margin-bottom: 20px;
  49. }
  50. .some-parent-selector a.some-parent-selector {
  51. margin-bottom: 20px;
  52. }
  53.  
  54. .some-parent-selector {
  55. font-size: 24px;
  56. margin-bottom: 20px;
  57.  
  58. @at-root a#{&}{
  59. margin-bottom: 20px
  60. }
  61. }
  62.  
  63. .some-parent-selector {
  64. font-size: 24px;
  65. margin-bottom: 20px;
  66. }
  67. a.some-parent-selector {
  68. margin-bottom: 20px;
  69. }
Add Comment
Please, Sign In to add comment