forked from cypress-io/cypress-test-tiny
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (33 loc) · 956 Bytes
/
Copy pathindex.html
File metadata and controls
35 lines (33 loc) · 956 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div>
<div height="100px">
100px height div
</div>
<div class="sticky">
<div class="container">
<img class="in-sticky" src="https://placehold.co/150x150" alt="Placeholder Image" />
<div class="overlapping">
<div>text 1</div>
<div>text 2</div>
<div>text 3</div>
</div>
</div>
</div>
<div>
<div class="container">
<img class="not-in-sticky" src="https://placehold.co/150x150" alt="Placeholder Image" />
<div class="overlapping">
<div>text 1</div>
<div>text 2</div>
<div>text 3</div>
</div>
</div>
</div>
</div>
</body>
</html>