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