[SASS] @extend、@mixin 差別
@extend 適合使用在合併相同程式碼 但需謹慎使用,會增加 selector 間的關聯 %title { color: red; font-size: 15px; font-weight: bold; } .main h2 { @extend %title } .content h3 { @extend %title } .sidebar h4 { @extend %title } 編譯出來會是 .main h2, .content h3 »