File: offset.erb

package info (click to toggle)
ruby-capybara 3.40.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,368 kB
  • sloc: ruby: 23,988; javascript: 752; makefile: 11
file content (33 lines) | stat: -rw-r--r-- 740 bytes parent folder | download | duplicates (2)
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
28
29
30
31
32
33
<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
    <title>Offset</title>
    <style>
      body {
        margin: 0px;
      }
      #wrapper {
        width: 300px;
        height: 300px;
        margin: 0px;
      }
      #clicker {
        position: relative;
        width: 100px;
        height: 100px;
        top: 100px;
        left: 100px;
        background-color: red;
        margin: 0px;
      }
    </style>
    <script src="/jquery.js" type="text/javascript" charset="utf-8"></script>
    <script src="/offset.js" type="text/javascript" charset="utf-8"></script>
  </head>
  <body>
    <div id="wrapper">
      <div id="clicker"></div>
    </div>
  </body>
  </html>