HTML
<button class="myButton">X</button>
CSS
.myButton:hover {
background-color: #c53532;
}
/* in this example we reset the hover effect for touch devices! */
/* please see resources for more informations */
@media (hover:on-demand) {
.myButton:hover {
background-color: transparent; /* #color-when-NOT-touch-device; */
}
}