运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> #div1 { position: relative; height: 150px; width: 150px; margin-left: 60px; border: 1px solid blue; perspective: 100px; } #div2, #div4 { padding: 50px; position: absolute; border: 1px solid black; background: rgba(100,100,100,0.5); transform-style: preserve-3d; transform: rotateX(45deg); } #div3 { position: relative; height: 150px; width: 150px; margin-left: 60px; border: 1px solid blue; perspective: none; } </style> </head> <body> <h1>The perspective Property</h1> <h2>perspective: 100px:</h2> <div id="div1">DIV1 <div id="div2">DIV2</div> </div> <h2>perspective: none:</h2> <div id="div3">DIV3 <div id="div4">DIV4</div> </div> </body> </html>