blob: 339c990d10edbae71ba9d60707157b9d748aea5a (
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
38
39
40
|
<!DOCTYPE html>
<html>
<head>
<title>margin-trim: block-container-block-start-002</title>
<link rel="author" title="Sammy Gill" href="mailto:sammy.gill@apple.com">
<link rel="help" href="https://drafts.csswg.org/css-box-4/#margin-trim-block">
<link rel="match" href="/css/reference/ref-filled-green-100px-square-only.html">
<meta name="assert" content="block-start should trim block start margin for ONLY block-level first child">
<style>
.container {
background-color: green;
width: min-content;
margin-trim: block-start;
}
.outer {
background-color: green;
width: 100px;
height: 10px;
}
.first {
margin-top: 50px;
width: 100px;
height: 40px;
}
.second {
margin-top: 10px;
width: 100px;
height: 40px;
}
</style>
</head>
<body>
<p>Test passes if there is a filled green square.</p>
<div class="outer"></div>
<div class="container">
<div class="first"></div>
<div class="second"></div>
</div>
</body>
</html>
|