blob: a01f4b9afec58841820a005a91646b448caea01a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<clipPath id="myClipPath">
<rect x="100" y="100" width="100" height="100"/>
</clipPath>
<rect x="0" y="0" width="100" height="100" fill="red" id="abc"/>
</defs>
<rect x="0" y="0" width="100%" height="100%" fill="lime"/>
<use xlink:href="#abc"
x="100" y="100" clip-path="url(#myClipPath)"/>
</svg>
|