CSS を用いたテキストのスタイリングセクション

by Yoshiharu Kamata

HTML

<!-- Learn about this code on MDN: https://developer.mozilla.org/ja/docs/Web/SVG/Element/text -->

<svg xmlns="http://www.w3.org/2000/svg" width="400" height="60">
  <text x="10" y="40"
      style="font-family: Times New Roman;
             font-size: 20px;
             stroke: #00ff00;
             fill: #0000ff;">
    SVG text styling
  </text>
</svg>