x
<html>
<head>
<style>
.container {
perspective: 100px;
height: 100px;
width: 100px;
margin: 30px auto;
border: 1px solid darkgray;
}
#demo {
display: block;
height: 100%;
width: 100%;
background: dodgerblue;
transform: rotateY(20deg);
}
</style>
</head>
<body>
<h2>CSS rotateY() function</h2>
<p>The rotateY() function rotates the element on the Y-axis.</p>
<div class="container">
<div id="demo">Transformed</div>
</div>
</body>
</html>