Created
May 27, 2014 20:48
-
-
Save daphotron/f759d03fa1e97727923f to your computer and use it in GitHub Desktop.
Test underlines on links with background-image http://sassmeister.com/gist/f759d03fa1e97727923f
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 href="#">Test Link</a> |
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
| // ---- | |
| // Sass (v3.3.7) | |
| // Compass (v1.0.0.alpha.18) | |
| // ---- | |
| $color-link: #000; | |
| body { | |
| font-family: sans-serif; | |
| } | |
| a { | |
| font-size: 2em; | |
| color: #5d7699; | |
| text-decoration: none; | |
| background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(93, 118, 153, 0.5) 50%); | |
| background-repeat: repeat-x; | |
| background-size: 1px 1px; | |
| background-position: 0 1.2em; | |
| } |
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
| body { | |
| font-family: sans-serif; | |
| } | |
| a { | |
| font-size: 2em; | |
| color: #5d7699; | |
| text-decoration: none; | |
| background-image: linear-gradient(to bottom, transparent 50%, rgba(93, 118, 153, 0.5) 50%); | |
| background-repeat: repeat-x; | |
| background-size: 1px 1px; | |
| background-position: 0 1.2em; | |
| } |
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 href="#">Test Link</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment