blob: 13078e112a98daebd5302e5c7b451463067f8144 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>reference: 0.8 opacity green circle</title>
<style>
body {
margin: 0;
}
div {
margin: 100px 200px;
width: 200px;
height: 200px;
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 200 200"><circle cx="100" cy="100" r="100" fill="green" fill-opacity="0.8"/></svg>');
}
</style>
<div></div>
|