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.
Loading...
Related Quiz
- Describe how you would implement a table in Bootstrap that needs to adjust its layout dynamically based on screen size.
- In a responsive design, how does Bootstrap handle column wrapping and overflow?
- Explain how the 'text-truncate' utility in Bootstrap is used in web design.
- To initialize all Tooltips in a page, Bootstrap uses the selector '$('[data-toggle="___"]').tooltip();'.
- How do you combine CSS animations with Bootstrap components for complex animation effects?