Check out this example of my @media
query code:
@media (max-width:1200px) {
html { background-color: red; }
}
Everything was running smoothly with this code until I introduced the Bootstrap CSS.
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
Unfortunately, as soon as I added bootstrap to the mix, my @media
query stopped functioning properly.