Source code

Revision control

Copy as Markdown

Other Tools

<svg style="width: 500px; height: 500px; border: 1px solid green;">
<defs>
<mask id="mask">
<rect x="200px" y="250px" width="100px" height="150px" fill="#ffffff" />
<rect x="50px" y="105px" width="110px" height="195px" fill="blue" />
</mask>
</defs>
<rect mask="url(#mask)" width="500px" height="500px" fill="red" />
</svg>