Answers for "add css to document html javascript"

0

javascript add css file

var cssFile = document.createElement('link');
    cssFile.rel = 'stylesheet';
    cssFile.href = "styles.css";  // or path for file {themes('/styles/mobile.css')}
    document.head.appendChild(cssFile); // append css to head element
Posted by: Guest on March-25-2021
8

how to give css style in javascript

document.getElementById("myH1").style.color = "red";
Posted by: Guest on September-18-2020

Code answers related to "add css to document html javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language