summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/motion/offset-path-ray-005-ref.html
blob: 525d747053c1e460c3d1e3b8aead48e823594999 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
  <head>
    <title>CSS Motion Path: ray paths</title>
    <style>
      #container {
        width: 400px;
        height: 400px;
      }
      #target {
        position: relative;
        left: 120px;
        top: 160px;
        width: 100px;
        height: 50px;
        background-color: lime;
        transform-origin: 0px 0px;
        transform: rotate(45deg) translate(200px);
      }
    </style>
  </head>
  <body>
    <div id="container">
      <div id="target"></div>
    </div>
  </body>
</html>