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

電話番号のリンクをスマホのときだけに効かせたい

Last updated at Posted at 2019-03-15

はじめに

電話番号のリンクを付けたものの、pcにもリンクが付いて逆に不便になりますね

ちなみに電話番号のリンクはこちら

<a href="tel:0120-12-0000">0120-12-0000</a>

スマホだけに対応するには?

メディアクエリーでスマホサイズ以上(768px)の解像度のときに
pointer-eventsnoneします

@media screen and (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

これでaタグ等の動作を無効にさせます

メディアクエリー使って↑のコード書いたのにpointer-eventsがnoneしない時

aタグをdisplay: block;display: inline-block;にしてみてください

出来上がり

See the Pen 電話番号のリンクをスマホのときだけに効かせたい by naoko kikuchi (@kikuchi) on CodePen.

参考サイト

レスポンシブっぽくCSSだけで電話番号リンクをスマホにだけ適用する方法

1
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
1
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?