blob: e1eaeb0b29426919612f672cc1d860c54d30b4ec (
plain)
1
2
3
4
5
6
7
8
9
|
<svg xmlns="http://www.w3.org/2000/svg">
<style>
text { fill: url(#green); }
</style>
<linearGradient id="green">
<stop stop-color="green"/>
</linearGradient>
<text x="10" y="20">This text must be green.</text>
</svg>
|