Skip to content

Instantly share code, notes, and snippets.

@frankstallone
Last active August 29, 2015 14:13
Show Gist options
  • Save frankstallone/667b2ae8d2a76829d2a2 to your computer and use it in GitHub Desktop.
Save frankstallone/667b2ae8d2a76829d2a2 to your computer and use it in GitHub Desktop.
Accessible a:focus starter kit
a {
position: relative;
z-index: 0;
&:focus {
outline: none;
&::before {
background-color: rgba(0,0,0,.1);
border-radius: 2px;
bottom: -4px;
content: ' ';
left: -4px;
margin: auto;
padding: 4px;
position: absolute;
right: -4px;
top: -4px;
z-index: -1;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment