How do you add CSS rules using JavaScript?
For example
.center{margin:auto;width:900px}
Try This:
var myElement = document.querySelector("#superman"); myElement.style.backgroundColor = "#D93600";