Perspective Example

The perspective property adds depth to 3D transforms.

Preview

Code

<style>
.container{
perspective:400px;
}

.box{
width:120px;
height:80px;
background:#2563eb;
transform:rotateY(40deg);
}
</style>

<div class="container">
<div class="box"></div>
</div>

More CSS 3D Transforms Examples (8)