Reputation: 707
I am new to web development and I am using bootstrap to help with making my website. I want to know the best way to manage my own css files and the bootstrap css. I know I can override bootstrap stylings by dropping my own modifications into the style tag, but I feel like this is definitely the best way to go. Currently I just import two style sheets (mine and bootstrap), but they step on each others toes ALOT.
Thanks in advance
Upvotes: 0
Views: 173
Reputation: 56501
When I use bootstrap
, I used to follow these 2 rules:
class
.!important
in your stylesheet.Upvotes: 1