xxxxxxxxxx
<svg id="mySVG" width="600" height="250">
<defs>
<mask id="myMask" x="0" y="0" width="600" height="250" >
<rect width="600" height="250" fill="white"/>
<circle cx="25" cy="25" r="25" fill="black"/>
</mask>
</defs>
<rect x="0" y="0" width="600" height="250" fill="blue" mask="url(#myMask)"></rect>
</svg>
Run code snippetHide results