HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> div{ width: 100px; height: 100px; border: 1px solid black; transform: perspective(1000px) translateZ(60px); } </style> </head> <body> <h1>CSS transform Property</h1> <div> div </div> <p><strong>Note</strong>: Try to change the value of translateZ(z) to highter value.</p> </body> </html>
OUTPUT
×

Save as Private