From http://www.w3schools.com (Copyright Refsnes Data)
JavaScript can be used to change the style of an HTML element:
Change the
style of the current element
How to change the style of an element using the this object.
Change the
style of a specific element
How to change the style of an element using getElementById.
(You can find more examples at the bottom of this page)
With HTML 4, JavaScript and the HTML DOM can be used to change the style any HTML
element.
To change the style the current HTML element, use the statement:
style.property=new style
or more correctly:
this.style.property=new style
To change the style of a specific HTML element, use the statement:
document.getElementById(element_id).style.property=new style
Mouse
Events
How to change the color of an element when the cursor moves over it.
Visibility
How to make an element invisible. Do you want the element to show or not?
For a full overview please refer to the complete DOM Style Object Reference in our HTML DOM tutorial.
To learn more about CSS, find the complete CSS tutorial on our Home Page.
From http://www.w3schools.com (Copyright Refsnes Data)