Created
June 28, 2016 07:10
-
-
Save chyngyz/5261f957d4dfa0bdc4b908c849beac0e to your computer and use it in GitHub Desktop.
Text Decoration Underline Hack
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
a { | |
text-shadow: 0.04545em 0 0 #fff,0.09091em 0 0 #fff,0.13636em 0 0 #fff,-0.04545em 0 0 #fff,-0.09091em 0 0 #fff,-0.13636em 0 0 #fff,0 0.04545em 0 #fff,0 0.09091em 0 #fff,0 -0.04545em 0 #fff,0 -0.09091em 0 #fff; | |
background-image: -webkit-linear-gradient(gray, gray); | |
background-image: -moz-linear-gradient(gray, gray); | |
background-image: -ms-linear-gradient(gray, gray); | |
background-image: linear-gradient(gray, gray); | |
background-position: 0 1em; | |
background-size: 1px 1px; | |
background-repeat: repeat-x; | |
text-decoration: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment