Simple rotation

by rulokc

HTML

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

CSS

.box {
    width: 100px;
    height: 100px;
    background-color: #0f0;
    -webkit-transform: rotate(45deg);
    margin: 50px;
}