[Solved] How to change the CSS attributes inside the particulate class using only JavaScript [duplicate]


Here is a javascript solution:

var example = document.getElementByClassName("example");
example.style.width = "50px";

1

solved How to change the CSS attributes inside the particulate class using only JavaScript [duplicate]