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

スマホの見た目のときだけ電話番号のリンクをアクティブにする

Posted at
HTML
<a href="tel:0120-000-000" class="telephone">TEL:0120-000-000</a>

これだけだとPCのブラウザでも電話番号のリンクがつながってしまうので、スマホだけにする
メディアクエリでウィンドウ幅769px以上の場合はリンクを無効にするCSSを設定する

CSS
@media screen and (min-width: 769px){
 a.telephone [href*="tel:"] {
    cursor: default;
    pointer-events: none;
    text-decoration: none;
 }
}
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?