InterviewSolution
Saved Bookmarks
| 1. |
What Is Shorthand For Writing @mixin And @include Directives? |
|
Answer» You can USE = for @MIXIN directive and + for @include directive which REQUIRES LESS typing and MAKES your code simpler, and easier to read. You can use = for @mixin directive and + for @include directive which requires less typing and makes your code simpler, and easier to read. |
|