Skip to content

Instantly share code, notes, and snippets.

@DavidBruant
Created August 1, 2014 22:18
Show Gist options
  • Save DavidBruant/1c997f02aca5016ba753 to your computer and use it in GitHub Desktop.
Save DavidBruant/1c997f02aca5016ba753 to your computer and use it in GitHub Desktop.
CSS dirty debug
*:hover::before, *:hover::after{
color: black;
position: fixed;
background-color: white;
padding: 0.5em;
}
*:hover::before{
content: '#' attr(id);
top: 0;
left: 0;
border-radius: 0 0 50% 0;
}
*:hover::after{
content: '.' attr(class);
top: 0;
right: 0;
border-radius: 0 0 0 50%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment