blob: 0ada6451471ca1ec61f88b403bab0f40c393ef8e (
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
|
<!DOCTYPE html>
<html>
<head>
<title>margin-trim: grid-block-end</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-grid">
<meta name="assert" content="block-end should trim block-end margins of items on last row">
<style>
grid {
display: inline-grid;
border: 1px solid black;
grid-template-columns: auto auto;
}
item {
display: block;
background-color: green;
width: 50px;
height: 50px;
}
</style>
</head>
<body>
<grid>
<item style="grid-row: span 2; height: auto;"></item>
<item style="margin-block-end: 10px;"></item>
<item></item>
</grid>
</body>
</html>
|