When tapping on a div in ios (safari and chrome), the hover pseudo class kicks in and persists even after the finger is lifted.
It's worth noting, that the user doesn't have to hold down to trigger this effect. Just a simple tap will cause the hover pseudo class to persist.
Is there a way to stop this by happening with pure css?
Pseudo-class:
.hover-div:hover {
background-color: cornflowerblue;
color: whitesmoke;
border-color: dodgerblue;
}