I am new to the world of Bootstrap but had a question as follows.
I've learned that it is possible to change column widths depending on screen size as follows:
<div class="col-lg-4 col-md-6 col-sm-8 col-xs-12 bg-warning">
<h1>Hello, world!</h1>
This is some text that I wanted to include here.
</div>
I've included bg-warning in there as my question is - is it possible to change the background colour as the screen width changes - as we are able to with the column widths themselves?
e.g. Large Screen - bg-warning, Medium, bg-success, and so on