-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 1.14 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Example title 1</title>
<style>
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
background: green;
display:flex;
height: 100vh;
}
.sidebar{
flex: 0 0 200px;
background: black;
}
.content-scroll{
flex:1;
background: blue;
overflow-y:scroll;
}
.content{
background: red;
}
article{
min-height: 1000px;
background: white;
border: 10px solid lightskyblue;
}
</style>
<script src="https://code.jquery.com/jquery-2.2.3.min.js" integrity="sha256-a23g1Nt4dtEYOj7bR+vTu7+T8VP13humZFBJNIYoEJo=" crossorigin="anonymous"></script>
<script src="script.js"></script>
</head>
<body>
<div class="sidebar"> sidebar</div>
<div class="content-scroll">
<div class="content">
<article class="scroll_check prerendered" id="article_foo" >
Foo
</article>
</div>
</div>
</body>
</html>