-
Notifications
You must be signed in to change notification settings - Fork 0
/
flex-container-scroll-demo.html
65 lines (59 loc) · 1.38 KB
/
flex-container-scroll-demo.html
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
61
62
63
64
65
<html>
<head>
<style>
body,
html {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.outer {
display: flex;
justify-content: center;
/* REQUIRED: causes this container to grow the max height of the inner container */
height: 100%;
}
.inner {
display: flex;
margin: 20px;
padding: 20px;
/* show you can limit the height if you wanted to */
max-height: 500px;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
background-color: lightblue;
min-width: 300px;
padding: 50px;
/* always show the Y scrollbar to prevent side-shift on scroll */
overflow-y: scroll;
}
</style>
</head>
<body>
<div class="outer">
<div class="inner">
<div class="content">
<div>START</div>
<div>CONTENT</div>
<div>CONTENT</div>
<div>CONTENT</div>
<div>CONTENT</div>
<div>CONTENT</div>
<div>CONTENT</div>
<div>CONTENT</div>
<div>CONTENT</div>
<div>CONTENT</div>
<div>CONTENT</div>
<div>CONTENT</div>
<div>CONTENT</div>
<div>CONTENT</div>
<div>END</div>
</div>
</div>
</div>
</body>
</html>