summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/contain-layout-formatting-context-margin-001.html
blob: 3b8f9caa7519d1afe798adeb4e64b58222592225 (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
36
37
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>CSS Test: 'contain: layout' with a vertical margin child. Margin collapse should not occur, and neither should overflow clipping.</title>
  <link rel="author" title="Kyle Zentner" href="mailto:zentner.kyle@gmail.com">
  <link rel="author" title="Morgan Rae Reschenberg" href="mailto:mreschenberg@berkeley.edu">
  <link rel="help" href="https://drafts.csswg.org/css-contain/#containment-layout">
  <link rel="match" href="contain-layout-formatting-context-margin-001-ref.html">
  <style>
  #a {
      contain:layout;
      background: blue;
      margin: 10px;
      width: 50px;
      height: 50px;
  }
  #b {
      width: 50px;
      height: 40px;
      background: green;
      margin-top: 10px;
  }
  #c {
      background: lightblue;
      width: 50px;
      height: 10px;
  }
  </style>
</head>
<body>
  <div id="a">
    <div id="b"></div>
    <div id="c"></div>
  </div>
</body>
</html>