Вам понадобится @media
, но вы можете включить блок <style>
в <body>
.
Для полноты / других, вы можете сделать что-то вроде этого:
<style type="text/css">
@media screen and (max-width:600px) {
.hideMobile { display:none!important; }
}
</style>
<img class="hideMobile" src="..." width="xxx" />