Is it possible to override the Css Classes with JavaScript ? for exemple :
Adding a background to .iframe style classe.
who down voted my answer? Please provide your reason
Changing a STYLE property
var iframe = document.querySelector('.iframe');
iframe.style['marginBottom'] = "200px";
Changing a CLASS property
iframe['className'] = "myClass";
iframeclass? Just toggle another class name for those elements and define a CSS rule with the background for only that toggled class.