1<!DOCTYPE html>
2<html>
3 <head>
4 <style>
5 #svgelem {
6 position: relative;
7 left: 10%;
8 -webkit-transform: translateX(-20%);
9 -ms-transform: translateX(-20%);
10 transform: translateX(-20%);
11 }
12 </style>
13 <title>SVG</title>
14 </head>
15
16 <body>
17 <h2>HTML5 SVG Rectangle</h2>
18 <svg id="svgelem" width="300" height="200" xmlns="http://www.w3.org/2000/svg">
19 <rect x="50" y="20" rx="30" ry="30" width="150" height="150"
20 style="fill:blue;/">
21 </svg>
22 </body>
23</html>