There is no ideal way to handle this, but experience says it’s easier to add a custom file at the bottom of the head and start with something clean, rather than crawl into 8,000 lines of a file that you don’t know (and usually don’t want to know).
One of the first things you learned about CSS is that the last rule applies:
p {color: red;}
p {color: green;}
<p>Hello world !</p>
Run codeBut sometimes this does not work:
body p {color: red;}
p {color: green;}
<p>Hello world !</p>
Run codeAnd you end up using! it is important that far from always has a bad idea:
body p {color: red;}
p {color: green !important;}
<p>Hello world !</p>
Run codeSo, how come that two fragments of red?
CSS (), CSS. "" (1 , 10 , 100 ...), . - , , .
:
p {color : red;}
#wrapper p.intro {color : green;}
.container p {color : orange;}
.container p.intro {color : blue;}
<div id="wrapper" class="container">
<p class="intro">Hello world !</p>
</div>
, , dev, , , .
: CSS, .
, , , CSS.