tags:

views:

59

answers:

1

How Tp Change Hot Spot Color In Html On Mouse Over

+1  A: 

if you mean the hover-color , you could do it like this (:hover-pseudo-class):

.myelement:hover{
  color:#ff0000;
  background-color:#00ff00;
}

(this works also with class- or tag-selectors, but only on a in old IE versions)

if anything else is meant by "hot spot color": i've no idea what you're talking about...

oezi