summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/grid-items/grid-item-margins-and-writing-modes-001.html
blob: 5209940a9699d6a108f815f81eb4d3b4527dcf79 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<title>CSS Grid: Grid items and logical margins</title>
<link rel="author" title="Javier Fernandez" href="mailto:jfernandez@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#propdef-grid-template-columns">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#propdef-grid-column">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#propdef-grid-row">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#grid-items">
<link rel="match" href="grid-item-margins-and-writing-modes-001-ref.html">
<meta name="assert" content="This test ensures that the border, margin, and padding
combining with RTL direction and different writing-modes generate the proper layout."/>
<link href="/css/support/grid.css" rel="stylesheet">
<link href="/fonts/ahem.css"  rel="stylesheet"/>
<style>
.grid {
    grid-template-columns: 80px;
}

.block {
    background-color: grey;
    width: 80px;
    height: 80px;
    position: relative;
    margin-bottom: 5px;
    border: 1px solid;
}

.item {
    font: 15px/1 Ahem;
    background-color: green;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    width: 40px;
    height: 20px;
    margin: 4px 8px 12px 16px;
}
</style>

<body>
    <div class="grid block">
        <div class="item">X</div>
    </div>
    <div class="grid block verticalRL">
        <div class="item">X</div>
    </div>
    <div class="grid block verticalLR">
        <div class="item">X</div>
    </div>
    <div class="grid block directionRTL">
        <div class="item">X</div>
    </div>
    <div class="grid block directionRTL verticalRL">
        <div class="item">X</div>
    </div>
    <div class="grid block directionRTL verticalLR">
        <div class="item">X</div>
    </div>
</body>

</body>
</html>