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:

I love SVG

အီဂီတီဂို စာကြိုးစားအရာဖြစ်တယ်:

<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):

Several lines: First line. Second line.

အီဂီတီဂို စာကြိုးစားအရာဖြစ်တယ်:

<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>
  

亲自试一试