I've organized my stylesheet directory like this:
stylesheets
bootstrap.min.css
style.css
Within my style.css file, I've made adjustments to the pre tag styling:
pre {
background-color: #d9edf7;
border: #d9edf7;
color: navy;
}
Unfortunately, these changes are not being reflected in the browser. It appears that the browser is prioritizing the styles from bootstrap.min.css instead. This is evident when inspecting the pre tag block in Chrome's developer tools.
https://i.sstatic.net/RtCm5.png
How can I ensure that my custom CSS takes precedence in this scenario?