Is it possible to override the Css Classes with JavaScript ? for exemple :
Adding a background to .iframe style classe.
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";