Answers for "css style p in class"

2

css class list

var myElement = document.getElementById("myElementID");
myElement.classList.add("style1 style2");
myElement.classList.remove("style1 style2");
Posted by: Guest on October-26-2019
1

javascript span style

//an example of an "out of context" way to change color of a text:
<span style="color: green"></span>
Posted by: Guest on May-18-2020

Browse Popular Code Answers by Language