blob: 45e2c0abd5404f7d45a0d11a3bcd0a8cbc766e1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<html>
<head>
<!-- Percent values should function the same as their equivalent numeric values: e.g. (50% == 0.5) -->
<style>
body { margin: 0px; }
div {
background: green;
width: 100px;
height: 100px;
-moz-transform: scale(50%, 75%);
}
</style>
</head>
<body>
<div>
</div>
</body>
</html>
|