CSS 3 Module <== Test # ==>
W3C Selectors 54 of 78
Testing Date Revision
NEGATED :hover pseudo-class (ID #63) 11-july-2001 1.0

This is an anchor

The color of the anchor above and of the current text should be black when the mouse does NOT hover over it, and green when the mouse hovers over it.

div.stub * { color : lime }
div.stub > * > *:not(:hover) { color : black }
<div class="stub">
<p>
<a href="http://dummy.example.org/dummy">This is an anchor</a>
</p>
<p>
<span>The color of the anchor above and of the current text should be
   black when the mouse does NOT hover over it, and green when the mouse hovers
   over it.</span>
</p>
</div>