blob: 8c092bd0c876bc328919f4b39358110dd902c726 (
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
|
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>CSS Overflow Reference: scrollbar-gutter size contributes to the scroll container's intrinsic size with "overflow:auto"</title>
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="help" href="https://drafts.csswg.org/css-overflow-4/#scrollbar-gutter-property">
<style>
.line {
display: flex;
}
.container {
block-size: 50px;
border: 5px solid black;
scrollbar-gutter: stable;
margin: 10px;
}
.hidden {
overflow: hidden;
}
.scroll-x {
overflow-x: scroll;
}
.scroll-y {
overflow-y: scroll;
}
.tall {
/* trigger overflow */
block-size: 5000px;
}
</style>
<div class="line">
<div class="container hidden">
<div>I should not wrap</div>
</div>
<div class="container scroll-y">
<div class="tall">I should not wrap</div>
</div>
</div>
<div class="line">
<div class="container hidden" style="writing-mode: vertical-rl">
<div>I should not wrap</div>
</div>
<div class="container scroll-x" style="writing-mode: vertical-rl">
<div class="tall">I should not wrap</div>
</div>
<div class="container hidden" style="writing-mode: vertical-lr">
<div>I should not wrap</div>
</div>
<div class="container scroll-x" style="writing-mode: vertical-lr">
<div class="tall">I should not wrap</div>
</div>
</div>
</html>
|