blob: 47c398086cc49c72a09a6bd37a2488d59ec76019 (
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>
<meta charset="utf-8">
<title>Reference: Opacity Flattening for Large Images</title>
<style>
div {
display: inline-block;
height: 40px;
width: 40px;
opacity: 0.25;
}
.blackcolor {
background: black;
}
</style>
</head>
<body>
<div class="blackcolor"></div>
<div class="blackcolor"></div>
<div class="blackcolor"></div>
<div class="blackcolor"></div>
<div class="blackcolor"></div>
</body>
</html>
|