Which directive is used to include the mixin in the code?
A) @mixin
B) @include
C) @extend
D) @import
Answer:
B) @include
Explanation:
In languages like Sass, the @include
directive is used to include a mixin in your code. Mixins allow you to reuse styles and properties in your stylesheets.