In SASS, using !________ with a variable makes it globally accessible, overriding local scope.

  • global
  • global-scope
  • globalize
  • important
The correct answer is "important." When you use !important with a SASS variable, it makes the variable globally accessible, overriding any local scopes. This is useful when you want to ensure a specific style takes precedence throughout your stylesheets, but should be used judiciously to avoid potential issues with maintainability and readability.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *