Skip to content

Instantly share code, notes, and snippets.

@zenman
Created September 27, 2013 15:36
Show Gist options
  • Save zenman/6730567 to your computer and use it in GitHub Desktop.
Save zenman/6730567 to your computer and use it in GitHub Desktop.
Find Empty Links
// Make links that are linking to the current page pulsate red
// so you can find and remove them. Really annoying but effective.
// I do all my development in webkit so this only works with that.
a[href="#"] {
background-color: red;
-webkit-animation: pulsate 1s ease-out;
-webkit-animation-iteration-count: infinite;
}
@-webkit-keyframes pulsate {
0% {background-color: #fff;}
50% {background-color: red;}
100% {background-color: #fff;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment