Little bug in a warning message

a   {
    color : #123456;
}

a:hover {
   color : white;    
   background : #123456;   
}




I get this warning:

Same colors for color and background-color in two contexts  a:hover and  a

This is not true, because the "color" attribute is set in "a:hover", and should not be copied from  "a".



      

Received on Thursday, 23 July 2009 05:50:58 UTC