blob: e41c0a2b5ddd767e969909e474a042b70f29b3a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html>
<head>
<title>CSS Reftest Reference</title>
<link rel="author" title="Keith Schwarz" href="mailto:keith@keithschwarz.com">
<link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
<style>
div {
margin: 300px 0 0 300px;
width: 100px;
height: 200px;
background: #202040;
transform: rotate(45deg);
transform-origin: 50% 0%;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
|