SASS Practice Test
SASS Partials and Modules 3
What convention marks a Sass member as private within a module?
Select your answer
A
Prefixing the name with a hyphen or underscore, e.g., `$-private` or `$_private`
B
Using the `!private` flag
C
Declaring it inside a `@private` block
D
Wrapping it in `%private { }`
Hint