blob: 352de2be315e81c3637509c90d4f97ca78d8d980 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?xml version="1.0" encoding="UTF-8"?>
<svg version="1.2" baseProfile="tiny"
width="100%" height="100%" viewBox="0 0 200 500"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
style="font-family: 'DejaVu Serif';
font-size:large" >
<title>stroke enabled</title>
<style type="text/css">
#MyRed {
fill: red;
}
#MyBlue {
fill: blue;
}
.MyLime {
stroke: lime;
stroke-width: 5;
}
</style>
<g id="MyBlue">
<rect x="10" y="0" height="50" width="50"></rect>
<rect x="10" y="60" height="50" width="50" class="MyLime"></rect>
<rect id="MyRed" x="10" y="120" height="50" width="50"></rect>
<rect id="MyRed" x="10" y="180" height="50" width="50" class="MyLime"></rect>
</g>
<rect x="10" y="240" height="50" width="50"></rect>
<rect x="10" y="300" height="50" width="50" class="MyLime"></rect>
<rect id="MyRed" x="10" y="360" height="50" width="50"></rect>
<rect id="MyRed" x="10" y="420" height="50" width="50" class="MyLime"></rect>
</svg>
|