I used this article to add a display image on text link hover (see link and css used below) and it works great, however I want to ignore this css when viewing on mobile. It is important to note that this should be all css. Any ideas?
.hover_img a {
position: relative;
}
.hover_img a span {
position: absolute;
display: none;
z-index: 99;
}
.hover_img a:hover span {
display: block;
}
<div class="hover_img">
<a href="#">Show Image<span><img src="https://picsum.photos/536/354" alt="image" height="100" /></span></a>
</div>