Perspective Example
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>
<style>
.container{
perspective:400px;
}
.box{
width:120px;
height:80px;
background:#2563eb;
transform:rotateY(40deg);
}
</style>
<div class="container">
<div class="box"></div>
</div>