Manipulating Style

 




// MANIPULATING STYLE
let heading=document.querySelector("h1");
console.dir(heading.style);
heading.style.color="red";
heading.style.backgroundColor="blue";

let links=document.querySelector(".box a");
links.style.color="purple";

let anchor=document.querySelector("a");
anchor.style.fontStyle="Italic";



Comments

Popular posts from this blog

Callback Hell

TODO list with DOM

Refactoring callback hell code