CSS3 Animation on Link Hover not working properly
问题 Background: Trying to create an esthetically pleasing linking hover for the future Current JSFiddle: Available here for FF Browser. body { color:#ffffff; font-family:"Helvetica"; font-size:12pt; background-color:#000000; font-weight:bold; } a:link { color:white; text-decoration:none; } a:hover { animation: myhover 1s; transition-timing-function: ease-in-out; font-weight: bold; } @keyframes myhover { from { background-color: black; color: white; } to { background-color: white; color: black; }