establishing a new viewport
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg width="600" height="300"
xmlns="http://www.w3.org/2000/svg">
<rect width="200" height="100" fill="red"/>
<!-- establishing a new viewport -->
<svg x="50%" y="50%" width="50%" height="50%">
<rect width="200" height="100" fill="blue"/>
</svg>
</svg>
Related examples in the same category