Skip to content

Instantly share code, notes, and snippets.

@atelierbram
Last active January 3, 2016 06:59
Show Gist options
  • Save atelierbram/8426354 to your computer and use it in GitHub Desktop.
Save atelierbram/8426354 to your computer and use it in GitHub Desktop.
/*
* http://davidwalsh.name/pseudo-element/
* https://developer.mozilla.org/en-US/docs/Web/API/window.getComputedStyle
*/
.element:before {
content: 'NEW';
color: rgb(255, 0, 0);
}
// http://davidwalsh.name/pseudo-element/
// https://developer.mozilla.org/en-US/docs/Web/API/window.getComputedStyle
var color = window.getComputedStyle(
document.querySelector('.element'), ':before'
).getPropertyValue('color')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment