0

Is it possible to override the Css Classes with JavaScript ? for exemple :

Adding a background to .iframe style classe.

Nassim MOUALEK
  • 4,702
  • 4
  • 25
  • 44

1 Answers1

-1

Who is the troll

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";
Filipe Merker
  • 2,428
  • 1
  • 25
  • 41