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
| <!DOCTYPE html>
| <html>
| <head>
| <meta charset="utf-8">
| <title></title>
| <style>
| .body{
| height: 100%;
| display: flex;
| flex-direction: column;
| align-items: stretch;
| }
| .d1{
| background: red;
| height: 50px;
| }
| .d2{
| background: blue;
| height: 200px;
| }
| .d3{
| background: yellow;
| flex-grow: 1;
| height: 500px;
| overflow: hidden;
| overflow-y: auto;
| white-space: nowrap;
| outline: none;
|
| }
|
|
| </style>
| </head>
| <body>
| <div class="body">
| <div class="d1"></div>
| <div class="d2"></div>
| <div class="d3">
|
| <div style="height: 1000px; background: yellow;"></div>
|
| </div>
| </div>
|
| </body>
| </html>
|
|