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

Save as Private