0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

svgタグを使って描いた物にリンクをつける方法

Posted at

やり方

aタグでsvgタグ全体を囲んでもリンク化することはできない。svgタグ内の図形をaタグで囲みxlink:href属性でリンク先を指定する。

<svg>
  <a xlink:href="#">
    <path></path>
  </a>
</svg>

参考

SVGを使うときに知っておくといいことをまとめました - Qiita
SVGアイコンを実⽤するために知っておきたい、リンク周りの記述⽅法 | Webクリエイターボックス

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?