LoginSignup
0
2

More than 5 years have passed since last update.

リンクの無効化(IE10/9)

Last updated at Posted at 2017-06-12

リンクの無効化

pointer-events:none; を指定

IE10・9向けの指定方法

.xxxxx {
  position: relative;
}
.xxxxx:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
}
0
2
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
2