blob: d434a961b9d08c439b7f180e4793bf1143534bc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-0 0 300 300">
<style id="style2">
.st0{fill:yellow;}.st1{fill:green;}
</style>
<style type="text/some-unknown-styling-language">
.st2{fill:red;}
</style>
<rect x="0" y="0" height="50" width="50" class="st0" fill="blue"></rect>
<rect x="60" y="0" height="50" width="50" class="st1" fill="blue"></rect>
<rect x="120" y="0" height="50" width="50" class="st2" fill="blue"></rect>
</svg>
|