CSS 관점 속성을 사용하여 3D 요소가 표시되는 방식에 대한 관점을 지정합니다.
이를 달성하기 위해 다음 코드를 실행할 수 있습니다.
예
<!DOCTYPE html> <html> <head> <style> .demo1 { position: relative; width: 150px; height: 150px; background-color: yellow; perspective: 80px; margin: 50px; } .demo2 { position: absolute; padding: 20px; background-color: orange; transform-style: preserve-3d; transform: rotateX(45deg); } </style> </head> <body> <h1>Rotation</h1> <div class = "demo1">Demo <div class = "demo2">Demo </div> </div> </body> </html>