Hello,
I am new and rubbish with anything ASP so bare with me.
Can you use the ':hover pseudo-class' to change the background colour of an ASP panel when the mouse hovers over it?

e.g
Code:
.panel
{
	background-color: Blue;
} 
.panel:hover
{
	background-color: White;
}
I think i have referenced the CSS class in the correct places but the panel stays blue when the mouse hovers over it.

Thanks,
Mojo