blob: 83ccea7dca326911c48bf20d2b32c66e0e50a714 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE quirks-mode>
<link rel="help" href="https://quirks.spec.whatwg.org/#the-body-element-fills-the-html-element-quirk"/>
<link rel="match" href="body-fills-html-quirk-ref2.html" />
<style>
html {
width: 200px;
height: 200px;
}
body {
border: solid;
margin: 10px 11px 12px 14px;
}
span {
display: inline-block;
width: 100px;
height: 100px;
background: green;
}
</style>
<body>
<span></span>
</body>
|