SVG <text>


Văn bản SVG - <text>

Phần tử <text> được sử dụng để xác định một văn bản.


ví dụ 1

Viết một văn bản:

I love SVG! Sorry, your browser does not support inline SVG.

Đây là mã SVG:

Thí dụ

<svg height="30" width="200">
  <text x="0" y="15" fill="red">I love SVG!</text>
</svg>

Ví dụ 2

Xoay văn bản:

I love SVG Sorry, your browser does not support inline SVG.

Đây là mã SVG:

Thí dụ

<svg height="60" width="200">
  <text x="0" y="15" fill="red" transform="rotate(30 20,40)">I love SVG</text>
</svg>


Ví dụ 3

Phần tử <text> có thể được sắp xếp theo bất kỳ số lượng nhóm con nào với phần tử <tspan>. Mỗi phần tử <tspan> có thể chứa các định dạng và vị trí khác nhau.

Văn bản trên một số dòng (với phần tử <tspan>):

Several lines: First line. Second line. Sorry, your browser does not support inline SVG.

Đây là mã SVG:

Thí dụ

<svg height="90" width="200">
  <text x="10" y="20" style="fill:red;">Several lines:
    <tspan x="10" y="45">First line.</tspan>
    <tspan x="10" y="70">Second line.</tspan>
  </text>
</svg>

Ví dụ 4

Văn bản dưới dạng liên kết (với phần tử <a>):

I love SVG! Sorry, your browser does not support inline SVG.

Đây là mã SVG:

Thí dụ

<svg height="30" width="200" xmlns:xlink="http://www.w3.org/1999/xlink">
  <a xlink:href="https://www.w3schools.com/graphics/" target="_blank">
    <text x="0" y="15" fill="red">I love SVG!</text>
  </a>
</svg>