SVG <text>
SVG Text - <text>
<text>
Element is used to define text.
Example 1
Write a text:
အီဂီတီဂို စာကြိုးစားအရာဖြစ်တယ်:
<svg height="30" width="200"> <text x="0" y="15" fill="red">ကျွန်တော် က အီဂီတီဂို ကို ယုံကြည်တယ်!</text>
Example 2
Rotated text:
အီဂီတီဂို စာကြိုးစားအရာဖြစ်တယ်:
<svg height="60" width="200"> <text x="0" y="15" fill="red" transform="rotate(30 20,40)">I love SVG</text>
Example 3
<text>
Element can be with <tspan>
Elements together, are arranged in any number of subgroups. Each <tspan>
Element can contain different formats and positions.
Multi-line text (using <tspan> element):
အီဂီတီဂို စာကြိုးစားအရာဖြစ်တယ်:
<svg height="90" width="200"> <text x="10" y="20" style="fill:red;">Several lines:</text> <tspan x="10" y="45">First line.</tspan> <tspan x="10" y="70">Second line.</tspan> </text>
ဘာသာ 4
သတင်းပုံ အဖြစ် (လုံးဝ) <a>
အရာ):
အီဂီတီဂို စာကြိုးစားအရာဖြစ်တယ်:
<svg height="30" width="200" xmlns:xlink="http://www.w3.org/1999/xlink"> <a xlink:href="www.codew3c.com/graphics/index.asp" target="_blank"> <text x="0" y="15" fill="red">ကျွန်တော် က အီဂီတီဂို ကို ယုံကြည်တယ်!</text>