selector:hover in Internet Explorer

An example with a form

input.submit:hover{background:#eee;}

Various selectors

span:hover{background:lime;}
Example
dd#example{background:lime;}
Example
dd.example{background:lime;}
Example

Not properly working

*:hover{
 color:blue;
}
html:hover{
 background:black;
}

Both have been removed, since the results are not relevant. You can copy this page (and the HTML Component) and test it for your self.

Everything you have seen here - with Internet Explorer - is made possible by: Peter Nederlof.