Answers for "chaneg element style in js"

2

adding styling to element using javascript

var elem = document.querySelector('#some-element');

// Set color to purple
elem.style.color = 'purple';

// Set the background color to a light gray
elem.style.backgroundColor = '#e5e5e5';

// Set the height to 150px
elem.style.height = '150px';
Posted by: Guest on October-28-2020
0

how to change color on js

document.getElementBiId("your id").style.color = "your color";
//it can also be used as:
document.body.style.backgroundColor = "your color";
Posted by: Guest on January-24-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language