blob: b58d91d590ae635fd5c6686bc1364dd12513ae91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<html>
<head>
<style>
#thediv {
position: absolute; left: 0; top: 100%;
transform: rotate(-90deg);
transform-origin: 0 0;
background: blue 0 0 fixed repeat; width: 200px; height: 200px;
}
</style>
</head>
<body>
<div id="thediv"></div>
</body>
</html>
|