Skip to content

Instantly share code, notes, and snippets.

@tylergaw
Created April 5, 2012 15:44
Show Gist options
  • Save tylergaw/2312045 to your computer and use it in GitHub Desktop.
Save tylergaw/2312045 to your computer and use it in GitHub Desktop.
Notched Arrow attempt + failure
/**
* Notched Arrow attempt + failure
*/
a {
background-color: darkred;
color: #f1f1f1;
display: inline-block;
font-family: georgia, times, serif;
font-size: 2em;
font-style: italic;
font-weight: bold;
position: relative;
text-decoration: none;
}
a:after {
background-color: transparent;
border-left: 5px solid darkred;
border-top: 2px solid transparent;
border-right: 2px solid transparent;
border-bottom: 2px solid transparent;
content: "";
display: inline-block;
height: 1em;
position: absolute;
width: 1em;
}
<a href="#woot">Take the tour</a>
{"view":"split-vertical","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment