Forum Moderators: martinibuster
<html>
<head>
<style>
@media(XXXpx){#id{style}}
</style>
</head>...
<html>
<head>
<style>
#img1{display:block}
#img2{display:none}
@media(min-device-width:XXXpx){
#img1{display:none}
#img2{display:block}
}
</style>
</head>
<body>
<a href=http://example.com target="_top">
<svg id="img1"></svg>
<svg id="img2"></svg>
</a>
</body>
</html>
How am I going to test it?