Skip to content

Instantly share code, notes, and snippets.

Created October 17, 2012 15:49
Show Gist options
  • Save anonymous/3906301 to your computer and use it in GitHub Desktop.
Save anonymous/3906301 to your computer and use it in GitHub Desktop.
Example: double mixed underline
/**
* Example: double mixed underline
*/
span {
position: relative;
float: left;
padding: 0 10px;
border-bottom: solid 1px;
}
span:after {
content: '';
display: block;
border-bottom: solid 1px;
position: relative;
top: 4px;
margin-left: 10px;
margin-right: -5px;
}
<!-- content to be placed inside <body>…</body> -->
<span> About Us</span>
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment