Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Mvzes3468y@Trey50Daniel I understand that, but to me it seems like writing a more specific CSS rule in Bootstrap is still just possible, so for example instead of
#thing {
color: blue !important
}
you'd just write
#thing #isBlue {
color: blue;
} -
eggory4368yYou could just add your custom style sheet after you call the bootstrap one. Then any of your styles will over write the bootstrap ones
-
Mvzes3468y@Greggergalactic CSS Tricks explains it better than I can in 1000 characters. https://css-tricks.com/when-using-i...
TL;DR important causes downward spirals and should be avoided when possible which it very much is in Bootstrap
Related Rants
.btn {
background-color: red !important
}
When I doubt..
undefined
css
bootstrap
wk47