Guest User

Untitled

a guest
Dec 11th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. /* Mixin の場合 */
  2. @mixin test($color) {
  3. margin-bottom:10px;
  4. width:100px;
  5. color:$color;
  6. }
  7. .test1 {
  8. @include test(#f99);
  9. }
  10. .test2 {
  11. @include test(#f9f);
  12. }
  13.  
  14. /* Extend の場合 */
  15. .test {
  16. margin-bottom:10px;
  17. width:100px;
  18. }
  19. .test1 {
  20. @extend test;
  21. color:#f99;
  22. }
  23. .test2 {
  24. @extend test;
  25. color:#f9f;
  26. }
  27.  
  28. // ----------------------------
  29. // コンパイル後
  30. // ----------------------------
  31. /* Mixin の場合 */
  32. .test1 {
  33. margin-bottom:10px;
  34. width:100px;
  35. color:#f99;
  36. }
  37. .test2 {
  38. margin-bottom:10px;
  39. width:100px;
  40. color:#f9f;
  41. }
  42.  
  43. /* Extend の場合 */
  44. .test, .test1, .test2 {
  45. margin-bottom:10px;
  46. width:100px;
  47. }
  48. .test1 {
  49. color:#f99;
  50. }
  51. .test2 {
  52. color:#f9f;
  53. }
Add Comment
Please, Sign In to add comment