If you have a link with the ID #specialLink, how would you apply a green color only when the cursor hovers over it?
#specialLink
a#specialLink:hover { color: green; }
#specialLink:hover a { color: green; }
a:hover #specialLink { color: green; }
#specialLink a:hover { color: green; }