blob: 9421f5057590bbcf66daa79aa506755360b63c73 (
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>
<html><head>
<style>
#outer {
opacity: 0.8;
background-color:red;
width: 200px;
}
#inner {
opacity: 0.6;
background-color:white;
color:white;
}
</style>
</head>
<body>
<div id="outer">
<div style="width:200px; height:200px; background:black;"></div>
<div id="inner">
<div style="width:200px; height:200px; background:black;"></div>
<div style="width:200px; height:200px; background:rgb(50,50,50);"></div>
</div>
</div>
</body></html>
|