HTML CSS examples for SVG:Group
place two <g> side by side in an svg
<html> <head></head> <body> <h1>Irish Flag SVG image</h1> <svg version="1.1" baseprofile="full" width="300" height="200" xmlns="http://www.w3.org/2000/svg"> <rect x="0" y="0" width="300" height="200" fill="green" /> <rect x="100" y="0" width="300" height="400" fill="white" /> <rect x="200" y="0" width="300" height="400" fill="orange" /> </svg> <!--from w w w. j a v a 2s. c o m--> </body> </html>