Given below is a snippet from an alistapart article. But the transition on "focus" (click) doesn't seems to be working on Chrome(25.0.1364.172) and Firefox(19.0.2). But works with Opera(12.14) (On Linux).
Any idea why?
<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
a.foo {
padding: 5px 10px;
background: #9c3;
-webkit-transition: background 0.3s ease;
-moz-transition: background 0.3s ease;
-o-transition: background 0.3s ease;
transition: background 0.3s ease;
}
a.foo:hover,
a.foo:focus {
background: #690;
}
</style>
</head>
<body>
<a href="#" class="foo">Transition me!
</body>
</html>