android - Image rollover issue -


i implemented images rollover css using code:

.content3{  background-image:url(../img/tablet2.jpg);  background-repeat:no-repeat;  border:5px solid #fa8072;  border-radius:5px;  width:220px;  height:200px;  margin:0 auto;  }  .content3:hover{ background-image:url(../img/servizibis.png); background-repeat:no-repeat; border:5px solid #fa8072; border-radius:5px; width:220px; height:200px; margin:0 auto; } 

this works fine on website desktop version doesn't work on responsive version on ipad , smartphone android. exist solution javascript or jquery code?


Comments

Popular posts from this blog

javascript - How to process users in one specific order using map o each function? -

java - Two interface have same method name with different return type -

javascript - Linking from page A to a specific iframe on page B -