tags:

views:

41

answers:

2

Ive seen buttons in html have RollOver effects but what else can you add this effect too ?

A: 

You can add a mouseover event handler to any element in a page. The important part is what you do once the event is fired.

Gabriel McAdams
A: 

Like zneak said in comments, pretty much anything. Set code in the onmouseover event of an HTML element.

A couple of elements can have rollover effects set through css pseudoclasses (for example, a:hover for an anchor tag), but it's limited and not 100% warranted across all browsers.

squillman