I'm using bootstrap, and currently full page is white background as default. I was wondering if that possible to change background color to gray when using mobile under bootstrap! like "class="col-sm-6" col-xs-6"...
does is possible how to write that code in jquery to automatic to change background color to gray color when come to use mobile and if using desktop change stay background color to white as default.
Using jQuery:
This is definitely possible, but doesn't require you to use jQuery at all. In a CSS file, simply add a
background
attribute to those classes - it might look something like the following:Alternatively, you could use media queries to change the body background at certain sizes. For example, to make the body gray only when the screen in small, you could use: