blob: b3acc12cf485d673c666b6248e9875f978e611e8 (
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
28
29
30
|
<!DOCTYPE HTML>
<html>
<head>
<style>
.wackeddiv {
position: absolute;
left: 20px;
top: 20px;
width: 50px;
height: 50px;
border: 2px solid highlight;
background-color: transparent;
}
.posabssemitransparentblack {
position:absolute;
left: 0px;
top: 50px;
width: 100px;
height: 100px;
background: lime;
opacity: 0.1;
}
</style>
</head>
<body>
<div class="posabssemitransparentblack"></div>
<div class="wackeddiv"></div>
</body>
</html>
|