blob: cf345b59638f28ddf423ed343a269178ab47f1b9 (
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 class="reftest-paged">
<title>
Reference
</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
position: absolute;
left: 0; right: 0;
height: 100%;
}
div {
border: solid orange 10px;
}
div + div {
border: solid transparent 20px;
}
div > div {
border: solid gray 10px;
height: 300%;
}
</style>
<div></div>
<div>
<div></div>
</div>
|