Skip to content

Instantly share code, notes, and snippets.

@e2o
Last active May 13, 2019 13:09
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 e2o/2d14bbae8f92f026495bd8a7654ef1fa to your computer and use it in GitHub Desktop.
Save e2o/2d14bbae8f92f026495bd8a7654ef1fa to your computer and use it in GitHub Desktop.
Apply multiple styles to a HTMLElement at once
Element.prototype.styles = function(attrs) {
Object.assign(this.style, attrs);
};
document.querySelector('.title').styles({
'color': 'red',
'padding': '1rem',
'marginBottom': '1.5rem',
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment