blob: 1ae6b1392d981248fb7f412582768f99fbe99ccc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE HTML>
<html>
<svg id="s">
<style>
#b { display: none; }
rect { fill:orange; }
</style>
<rect width="10" height="10" fill="lime"/>
</svg>
<style>
#b { display: block; }
rect { fill:blue; }
</style>
<div id="b" style="border:2px solid black">
<svg>
<use xlink:href="#s"/>
</svg>
</div>
|