| 1234567891011121314151617181920212223242526272829303132333435363738394041 | <!DOCTYPE html><html lang="en"><head>  <meta charset="UTF-8">  <meta http-equiv="X-UA-Compatible" content="IE=edge">  <meta name="viewport" content="width=device-width, initial-scale=1.0">  <title>Document</title>  <style>    *{      margin: 0;      padding: 0;    }    body{      perspective: 10000px;    }    #div1{      width: 200px;      height: 200px;      border: 1px solid #000;      margin: 100px auto;      transform: rotateY(45deg);      transform-style: preserve-3d;    }    #div2{      width: 200px;      height: 200px;      background: orange;      transform: rotateY(45deg);    }  </style></head><body>  <div id="div1">    <div id="div2"></div>  </div></body></html>
 |