The use of ___ in custom CSS can unintentionally override Bootstrap's responsive utilities.

  • !important
  • @media
  • :not()
  • calc()
The correct option is !important. The !important declaration in custom CSS can unintentionally override Bootstrap's responsive utilities. It gives a style rule the highest specificity, making it challenging for other styles to override it. Careful use of !important is crucial to avoid unintended style conflicts with Bootstrap's responsive features.
Add your answer
Loading...

Leave a comment

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