blob: 477a97c12ccd9dc8f6a5427c7d85449e96d8f3ff (
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
|
<!DOCTYPE html>
<link rel="stylesheet" href="resources/popover-styles.css">
<div class=topmost></div>
<div class=fake-popover>This is a popover</div>
<style>
.fake-popover {
width: 100px;
height: 100px;
margin: 1em;
/* The animated property */
left: 100px;
}
.topmost {
position:fixed;
top:0;
left:0;
width:1000px;
height:1000px;
background:green;
margin:0;
padding:0;
}
</style>
|