Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Hover on "everything but" aka "spotlight" effect Reply To: Hover on "everything but" aka "spotlight" effect

#240136
Alan Aurmont
Participant

Hi Paulie,

I just created a demo on my blog http://aa.tumblr.com, but I’m not sure how or where I’m supposed to insert the “smooth hover transition” part of the code:

a {
  color: #cccccc;
  -webkit-transition: color .5s linear;
  -moz-transition: color .5s linear;
  -ms-transition: color .5s linear;
  -o-transition: color .5s linear;
  transition: color .5s linear;
}

a:hover { color: #000000; }