SyntaxFix
Write A Post
Hire A Developer
Questions
For most styles do this:
var obj = document.createElement('select'); obj.style.width= "100px";
For styles that have hyphens in the name do this instead:
var obj = document.createElement('select'); obj.style["-webkit-background-size"] = "100px"