<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> | |
<defs> | |
<rect width="200" height="200" id="rect"/> | |
<use id="use" xlink:href="#rect"/> | |
</defs> | |
<clipPath id="clip1"> | |
<use xlink:href="#use" /> | |
</clipPath> | |
<rect width="400" height="400" fill="red" clip-path="url(#clip1)"/> | |
<rect width="200" height="200" fill="green" /> | |
</svg> | |