<div class="b">Hello World!</div>
body {
padding: 50px;
}
div.b {
width: 150px;
height: 80px;
background-color: green;
margin-bottom: 50px;
color: #fff;
transition: transform 1s ease-in;
}
div.b:hover{
transform: rotate3d(1, 1, 1, 60deg);
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.