<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
div
{
width: 200px;
height: 200px;
border: 3px solid red;
background: yellow;
margin: 100px auto;
}
.box1
{
transform: rotate(30deg);
}
.box2
{
transform: rotate(90deg);
}
.box3
{
transform: rotate(120deg);
}
.box4{
-webkit-transform:rotate(180deg);
transform:rotate(180deg);
}
.box5{
-webkit-transform:rotate(270deg);
transform:rotate(270deg);
}
.box6{
-webkit-transform:rotate(360deg);
transform:rotate(360deg);
}
.box7
{
transform: rotate(-45deg);
}
</style>
</head>
<body>
<div class="box1">box1</div>
<div class="box2">box2</div>
<div class="box3">box3</div>
<div class="box4">box4</div>
<div class="box5">box5</div>
<div class="box6">box6</div>
<div class="box7">box7</div>
<div class="box8">box8</div>
<div class="box9">box9</div>
<div class="box10">box10</div>
</body>
</html>