equal
deleted
inserted
replaced
|
1 <?xml version="1.0"?> |
|
2 <svg width="10cm" height="3cm" viewBox="0 0 1000 300" |
|
3 xmlns="http://www.w3.org/2000/svg" version="1.2" baseProfile="tiny"> |
|
4 <desc>Example tspan02 - using tspan's dx and dy attributes |
|
5 for incremental positioning adjustments</desc> |
|
6 <g font-family="Verdana" font-size="45" > |
|
7 <text x="200" y="150" fill="blue" > |
|
8 But you |
|
9 <tspan dx="2em" dy="-50" font-weight="bold" fill="red" > |
|
10 are |
|
11 </tspan> |
|
12 <tspan dy="100"> |
|
13 a peach! |
|
14 </tspan> |
|
15 </text> |
|
16 </g> |
|
17 <!-- Show outline of canvas using 'rect' element --> |
|
18 <rect x="1" y="1" width="998" height="298" |
|
19 fill="none" stroke="blue" stroke-width="2" /> |
|
20 </svg> |