I'm working on specifying image sizes for different screen sizes. I'm wondering if there are any specific Bootstrap classes that only work at certain screen sizes. If so, it would be great because then I could use something like
<img class = "only-active-on-mobile" src="myimage.jpg">
, right?
Here is the code I have so far:
<div class="media">
<a class="pull-left" href="#">
<img class="media-object img-rounded" style="" src="<%= image_path('MY_IMG_THAT_NEEDS_RESIZING.jpg') %>">
</a>
<div class="media-body">
<h4 class="media-heading">Media heading</h4>
<!-- Nested media object -->
<div class="media">
...
</div>
</div>