+ 2
How to modify js script with css.
modifying such as: color, fonts, align, border, etc
3 Answers
+ 7
i assume you meant modifying CSS with JavaScript....
try here:
www.w3schools.com/js/js_htmldom_css.asp
+ 2
not that changing js with css
+ 2
You can modify css using js but you can't modify js using css.
Css stands for cascading style sheets => it's not a true programming language, it's a complement to HTML(also not a true programming language)
JavaScript is a programming language, it has variables, loops etc.
Css has only variables.
So with JavaScript you can create html elements and add them to html document and also change their appearance by altering their css values.