SVG Groups with Objects

Here is a listing for an SVG group with a rectangle object.


  <g                                                         1
     inkscape:label="Layer 1"                                2
     inkscape:groupmode="layer"                              3
     id="layer1">                                            4
    <rect                                                    5
       style="fill:#0000ff;fill-opacity:0.75000000;fill-r... 6
       id="rect1351"                                         7
       width="100.00000"                                     8
       height="100.00000"                                    
       x="25.000000"                                         9
       y="25.000000" />                                   
  </g>                                                       10

  

1

Start of SVG group.

2

SVG group label. (Displayed in Layer pull-down menu if mode type is layer.)

3

SVG group id.

4

Type of SVG group (an Inkscape layer).

5

SVG rectangle object.

6

Rectangle style. (The line has been truncated.)

8

Rectangle width and height.

9

Rectangle x and y positions followed by close mark (/>).

10

Close of SVG group.