summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/motion/offset-path-ray-contain-001-ref.html
blob: 24a823f9ca37c1edd1006fe8645c4c72791a4e11 (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
<!DOCTYPE html>
<html>
  <head>
    <title>CSS Motion Path: ray paths with contain</title>
    <style>
      #container {
        width: 300px;
        height: 300px;
      }
      #target {
        position: relative;
        left: 150px;
        top: 150px;
        width: 100px;
        height: 100px;
        background-color: lime;
        transform: rotate(0deg) translate(50px, -150px);
      }
    </style>
  </head>
  <body>
    <div id="container">
      <div id="target"></div>
    </div>
  </body>
</html>