21.) What is the recommended way to override Bootstrap’s default spacing (margins & paddings)?
A) Modify $spacer variables in _variables.scss
B) Use inline styles in HTML
C) Write custom CSS classes
D) Modify Bootstrap’s core CSS file
22.) Which Bootstrap SCSS file defines global styles and root variables?
A) _bootstrap.scss
B) _global.scss
C) _variables.scss
D) _root.scss
23.) How do you change the hover effect of Bootstrap buttons globally?
A) Modify Bootstrap’s bootstrap.css file
B) Add a .btn:hover class in custom CSS
C) Override $btn-hover-bg in _variables.scss
D) Use JavaScript to change the hover style
24.) Which Bootstrap function is used to create responsive font sizes?
A) scale-font-size()
B) responsive-font-size()
C) dynamic-font()
D) rfs()
25.) How do you modify the default gutter width in Bootstrap’s grid system?
A) Change $grid-gutter-width in _variables.scss
B) Add custom .gutter classes in CSS
C) Use grid-gutter: 0px; in HTML
D) Remove Bootstrap’s grid system and write custom CSS
Related