Created
June 15, 2015 18:29
-
-
Save tannerhodges/18bfc1fa51570b68e5e2 to your computer and use it in GitHub Desktop.
Accessible Hover Mixin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Accessible hover styles. Applies :hover styles to :focus and :active. | |
* http://24ways.org/2007/css-for-accessibility | |
*/ | |
@mixin hover { | |
&:focus, &:hover, &:active { | |
@content; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment