summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/normal-flow/negative-margin-001-ref.html
blob: e98059a69f63befe25d90eb8fd7f328870633150 (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
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<style>
html, body {
  margin: 0;
}
html {
  margin-left: 10px;
}
outer {
  display: block;
  border: blue 10px solid;
  width: 100px;
}
inner {
  display: block;
  border: orange 10px solid;
  margin-left: -20px;
  margin-right: -50px;
  height: 10px;
}
</style>
<body>
  <outer>
    <inner></inner>
  </outer>
  <outer>
    <inner></inner>
  </outer>
  <outer>
    <inner></inner>
  </outer>
  <outer>
    <inner></inner>
  </outer>
</body>