blob: d9c2611ca822f34d3bbe7bd27764431786b337d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<svg xmlns="http://www.w3.org/2000/svg">
<style>
<![CDATA[
svg {
background-image: linear-gradient(lime, lime);
background-clip: text;
}
text { transform: skewy(30grad); }
g { perspective: 0; }
]]>
</style>
<g><text>hello</text></g>
</svg>
|