blob: e5083b4eabc87e1680efc51eb385acfb1fcef620 (
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
|
<!DOCTYPE quirks-mode>
<link
rel="help"
href="https://quirks.spec.whatwg.org/#the-html-element-fills-the-viewport-quirk"
/>
<link rel="match" href="html-fills-viewport-quirk-ref.html" />
<style>
html {
border: solid;
margin: 10px 11px 12px 14px;
writing-mode: vertical-lr;
}
body {
margin: 0;
}
span {
display: inline-block;
width: 100px;
height: 100px;
background: green;
}
</style>
<body>
<span></span>
</body>
|