What would be and equivalent for CSS hover, just to be used on devices that have a touch screen, like tablet and smartphones? I am trying to show arrows on my carousel, for des
Use :active selector in combination with :hover.
:active
:hover
:active selector should be called after the :hover selector.
Example
.button:hover, .button:active{ background-color: red; }