ohhh
ohhh

Reputation: 707

Managing independent CSS files and bootstrap

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

Answers (1)

Praveen
Praveen

Reputation: 56501

When I use bootstrap, I used to follow these 2 rules:

  1. Be careful in naming the class.
  2. Never use !important in your stylesheet.

Upvotes: 1

Related Questions