Created
October 17, 2012 15:49
-
-
Save anonymous/3906301 to your computer and use it in GitHub Desktop.
Example: double mixed underline
This file contains hidden or 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
/** | |
* 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; | |
} |
This file contains hidden or 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
<!-- content to be placed inside <body>…</body> --> | |
<span> About Us</span> |
This file contains hidden or 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
{"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