blob: ec29e333c71b193e89e87bf6349499b0a5f7afc3 (
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Masking: mask-image: multiple SVG masks</title>
<link rel="author" title="CJ Ku" href="mailto:cku@mozilla.com">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<svg height="0">
<mask id="mask" x="0" y="0" width="1" height="1">
<rect x="0" y="0" width="50" height="50" style="stroke:none; fill: #ffffff"/>
<circle cx="50" cy="50" r="25" style="stroke:none; fill: #ffffff"/>
</mask>
</svg>
<style type="text/css">
div {
background-color: purple;
mask: url(#mask);
width: 100px;
height: 100px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
|