While trying to make my website responsive, I planned on using media queries to adjust text size and other elements. The issue arises because I rely on bootstrap
for setting text sizes. Is there a way to apply bootstrap
classes in my CSS file?
For instance:
.test {
font-size: display-5; /* display-5 is a bootstrap defined size */
}
I initially considered using an @import
rule for this purpose, but it was unsuccessful. How can I achieve this functionality?