本文介绍了如何在-moz-transform中使用scale?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

任何机构都有一个很好的例子,展示了如何在?

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

推荐答案

可以很好地解释它。

我为您提供了一个简单的示例。演示:代码:

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>

这篇关于如何在-moz-transform中使用scale?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-14 15:15