6
3

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 5 years have passed since last update.

object タグをアンカーリンクで囲んでもリンクにならない

Posted at

以下のように、object タグを a タグで囲んだ場合、SVG の部分がリンクになりません。

<a href="/">
  <object type="image/svg+xml" width="32" height="32" data="logo.svg"></object>
</a>

スタイルシートで以下のように設定すると、解消されるようでした。

object {
    pointer-events: none;
}

参考: https://stackoverflow.com/a/17133804

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?