/ Published in: CSS

URL: http://www.alistapart.com/articles/understanding-css3-transitions/
Expand |
Embed | Plain Text
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 { background: #690; }
You need to login to post a comment.