I am working on a pure HTML/CSS layout. I have a dive with an ID, I have the following css code:
#headerTitleLeft:hover
{
background: lime;
}
This works with OPERA browser but not with IE9. IS there some directive to use or an alternative way?
Try using
background-colorinstead of the shorthandbackgroundand/or thehexadecimalrepresentation oflime.