Return to Snippet

Revision: 34537
at October 24, 2010 10:04 by alozuldo


Initial Code
a {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
}

Initial URL
http://sixrevisions.com/css/10-random-css-tricks-you-might-want-to-know-about/

Initial Description
For progressive enhancement, you could use the transform property that is supported by many browsers that have CSS3 support.

Here’s a trick for enlarging a elements on hover by 110%.

Initial Title
Use CSS transform for Interesting Hover Effects

Initial Tags
css, CSS3

Initial Language
CSS