Skip to content

Instantly share code, notes, and snippets.

@groenewege
Created October 26, 2012 08:32
Show Gist options
  • Save groenewege/3957635 to your computer and use it in GitHub Desktop.
Save groenewege/3957635 to your computer and use it in GitHub Desktop.
css - inline link (dashed)
.inline-link-2 {
display: inline-block;
border-bottom: 2px dashed rgba(0,0,0,0.9);
/* Font styles */
text-decoration: none;
color: #777;
}
.inline-link-2:hover {
border-bottom-style: dotted;
}
.inline-link-2:active {
border-bottom-style: solid;
}
.inline-link-2:visited {
border-bottom: 2px solid #97CAF2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment