Skip to content

Instantly share code, notes, and snippets.

@aarongustafson
Created December 6, 2009 15:01
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 aarongustafson/250255 to your computer and use it in GitHub Desktop.
Save aarongustafson/250255 to your computer and use it in GitHub Desktop.
If you can get away with it, use style.cssText instead of style
element.style.cssText = 'font-size:12px;text-indent:0';
element.style.cssText = 'font-size:14px;text-indent:5px';
element.style.fontSize = '12px';
element.style.textIndent = '0';
element.style.fontSize = '14px';
element.style.textIndent = '5px';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment