blob: 0c65e560a400a6fb999593032cc812adb27cac77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html lang=en>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Grid positioned item dynamic change.</title>
<link rel="help" href="https://drafts.csswg.org/css-grid-2/#abspos">
<style>
.reference {
display: grid;
background: green;
width: 100px;
height: 100px;
}
</style>
<body>
<p>Test passes if it matches the reference.</p>
<div class="reference">
</div>
</body>
</html>
|