i am trying to Disable the Bootstrap <pre>
https://jsfiddle.net/9e6byxe1/
Asked
Active
Viewed 45 times
-3

Dominik Szojda
- 3
- 1
-
You must overwrite the style of pre in your css. – Greg Mar 24 '17 at 09:45
-
Override the tag with your own CSS file. Make sure this file is below the original bootstrap file, otherwise you have to work with `!important` tags. – node_modules Mar 24 '17 at 09:46
-
Copy the specificity used by Bootstrap for ` – Carl Binalla Mar 24 '17 at 09:50
1 Answers
0
You need to use the !important
declaration.
pre {
color: #222222 !important;
}

Community
- 1
- 1

Sam Bunting
- 845
- 1
- 15
- 36