Skip to content

Instantly share code, notes, and snippets.

@jrrio
Created May 7, 2018 19:53
Show Gist options
  • Save jrrio/96d64c301c48fb9d5c04df16c9035c77 to your computer and use it in GitHub Desktop.
Save jrrio/96d64c301c48fb9d5c04df16c9035c77 to your computer and use it in GitHub Desktop.
Assigning styles to an HTML element
var el = document.getElementById("elemID");
el.style.cssText = "color:#fff;width:320px;height:240px;";
// Or:
Object.assign(el.style,
{
"color": "#fff",
"width": "320px",
"height": "240px"
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment