Search code examples
firefoxcsstransform

How to use scale with -moz-transform?


Any body has a Good example showing how to use scale with -moz-transform ?


Solution

  • The MDC page you linked to actually explains it pretty well.

    I made you a quick example. Demo: http://jsfiddle.net/SZ87b/1/ Code:

    <!doctype html>
    <title>-moz-transform scale example</title>
    <style>
     p { font-size: 5em; text-align: center; }
     p:hover { -moz-transform: scale(2); }
    </style>
    <p>Foo bar</p>