Last active
July 5, 2016 19:16
-
-
Save xikaos/0c39977b7d72f96cf022 to your computer and use it in GitHub Desktop.
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
@mixin test-img-alt { | |
img { | |
border: 2px dotted red; | |
} | |
img[alt] { | |
border: none; | |
} | |
} | |
@mixin test-link-title { | |
a { | |
border: 2px dotted #FF0EC9; | |
} | |
a[title] { | |
border:none; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Never put a website with missing image "alt" and link "title" attributes on production again.