remove hover effect from mobile

Solutions on MaxInterview for remove hover effect from mobile by the best coders in the world

showing results for - "remove hover effect from mobile"
Alessia
24 Jun 2016
1/* REMOVE HOVER FROM MOBILE*/
2
3@media (hover: hover) {
4 /* Write the styling which you want WITH hover.*/
5  .button2:hover{
6	color: rgb(221, 25, 25);
7  }
8}
9@media (hover: none) {
10  /* Write the styling which you want WITHOUT hover.*/
11  .button2:active{
12	color: #735bc1;
13  }
14}