blob: 11c127093a827666bdd761bf30933105ce53ec8c (
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
27
|
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<style type="text/css">
.absthing {
width: 400px;
height: 400px;
position: absolute;
left: 20px;
top: 20px;
}
#d1 {
z-index: 1;
}
#d2 {
z-index: 2;
background-color: rgba(0,0,255,0.5);
border: 1px solid red;
}
</style>
<body>
<div class="absthing" id="d1">
<embed id="test" type="application/x-test">
</div>
<div class="absthing" id="d2">
<p>This is overlaying
</div>
|