Skip to content

Instantly share code, notes, and snippets.

@Kilian
Last active October 21, 2020 08:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kilian/52bc70236851cb60a90c8ed69a5490b2 to your computer and use it in GitHub Desktop.
Save Kilian/52bc70236851cb60a90c8ed69a5490b2 to your computer and use it in GitHub Desktop.
Highlight elements with a lang attribute (and show the lang value)
[lang] {outline:2px solid yellow}
[lang]::before {
content: attr(lang);
display:block;
position:absolute;
color:black;
background: yellow;
padding:0.5em;
font-family:monospace;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment