Simple rotation
by rulokc
HTML
<div class="box"></div>
CSS
.box {
width: 100px;
height: 100px;
background-color: #0f0;
-webkit-transform: rotate(45deg);
margin: 50px;
}
by rulokc
<div class="box"></div>
.box {
width: 100px;
height: 100px;
background-color: #0f0;
-webkit-transform: rotate(45deg);
margin: 50px;
}