Should the Bootstrap media queries be saved in a css file or a js file?

Move your style.js css media codes into the style.css
CSS media queries are the part of .css extension files. You should not place it some other extension than .css
Now a days there are preprocessor tool for css like .less, .sass, .scss you can use them in those extension files as well.

<link rel="stylesheet" href="https://stackoverflow.com/questions/41377265/style.css" />

Leave a Comment