[ANSWERED] javascript – Changing the css of code ouput on an HTML page with Skulpt
Solution 1 : It seems p: color: white; is invalid css, since p is an element not a style property. Instead, this line should be just color: white;. Example snippet…
Solution 1 : It seems p: color: white; is invalid css, since p is an element not a style property. Instead, this line should be just color: white;. Example snippet…
Solution 1 : You have an un-necessary HTML tag textarea inside your clearit function, which was causing an error (check in console). It is not required since you already have…