I have these two divs as an example and I want to keep the inner one in a infinite rotation state. How do I go about that?
<div class="parent">
<div class="child">
</div>
</div>
.parent{
width:100px;
height:100px;
margin:50px auto;
}
.child{
width:50px;
height:50px;
margin:25px auto;
transform:rotate(45deg)
}