Skip to content

Instantly share code, notes, and snippets.

@xikaos
Last active July 5, 2016 19:16
Show Gist options
  • Save xikaos/0c39977b7d72f96cf022 to your computer and use it in GitHub Desktop.
Save xikaos/0c39977b7d72f96cf022 to your computer and use it in GitHub Desktop.
@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;
}
}
@xikaos
Copy link
Author

xikaos commented Mar 23, 2016

Never put a website with missing image "alt" and link "title" attributes on production again.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment