blob: 7fdc1d9a8963bb93d655d699ac788b835ef58d5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html><head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"><style>
#rot {
width: 300px; /* the div is partially outside of the viewport */
height: 300px;
background: red;
position: absolute;
left: -150px;
top: -150px;
}
</style>
</head><body><div style="transform: rotate(72deg);" id="rot"></div>
<script>
</script></body></html>
|