I am working on an HTML file that is loading two stylesheets:
- Bootstrap style (
bootstrap.css
) - Custom app style (
site.css
)
The code in bootstrap.css
currently looks like this:
.modal-open .modal {
overflow-x: hidden;
overflow-y: auto;
}
How can I modify my site.css
to give priority to its styles over those defined in bootstrap.css
, without making any changes in the latter?
.modal-open .modal {
overflow-x: hidden;
overflow-y: scroll;
background-color: #D5D5D5
}