0
0

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 1 year has passed since last update.

pointer-eventsについて

Last updated at Posted at 2023-05-09

なぜこの記事を書こうと思ったか

業務で画像を随所に散りばめた、position:absoluteを多用するWebサイトを実装することがあり、その際に画像と重なった要素のhoverが効かなくなることがあり、自身では原因がわからなかったため。

pointer-eventsについて

  • pointer-eventsには、以下の10個の値が指定できる(キーワード値の場合)
    • auto
    • none
    • visiblePainted
    • visibleFill
    • visibleStroke
    • visible
    • painted
    • fill
    • stroke
    • all

解説

  • auto
    • 初期値。pointer-eventsプロパティを指定していない場合と同じ振る舞いをする。
  • none
    • 要素はポインターイベントの対象にならない。ただし、子孫要素が別のpointer-eventsプロパティの指定をしている場合には、子孫要素はポインターイベントの対象になり得る。
  • 他の値はsvgのみに指定可能な値である。これらは別の機会にこの記事を編集してまとめる。

参考

MDN : https://developer.mozilla.org/ja/docs/Web/CSS/pointer-events

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?