HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> div{ width: 100px; height: 100px; margin-top: 50px; border: 1px solid black; transform: scaleY(2); } </style> </head> <body> <h1>CSS transform Property</h1> <div> y-axis is expanded 2 times of given 'height'. </div> </body> </html>
OUTPUT
×

Save as Private