Answers for "Inline Style js"

11

add style javascript

// Bad:
element.setAttribute("style", "background-color: red;");
// Good:
element.style.backgroundColor = "red";
Posted by: Guest on September-08-2020
1

style through javascript

element.style.backgroundColor = "red";   // set the background color of an element to red
Posted by: Guest on July-10-2020
0

inline css with js

nFilter.style.width = '330px';
nFilter.style.float = 'left';
Posted by: Guest on October-31-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language