blob: 3f5afa40a9ed7ed0ef1b6d31af5f1c170de60e57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<svg xmlns="http://www.w3.org/2000/svg">
<style>
circle { fill: red }
.b { fill: green }
.e { fill: green }
</style>
<circle cx="5" cy="10" r="5" class="a">A</circle>
<circle cx="15" cy="10" r="5" class="b">B</circle>
<circle cx="25" cy="10" r="5" class="c">C</circle>
<circle cx="35" cy="10" r="5" class="d">D</circle>
<circle cx="45" cy="10" r="5" class="e">E</circle>
</svg>
|