How to detect a mobile device in a web page

前端 未结 4 644
太阳男子
太阳男子 2020-12-30 04:54

For a website I want to use specific CSS rules for mobile devices. What I want is the following:

  • create a link on a phone number, and make it clickable for mo
4条回答
  •  没有蜡笔的小新
    2020-12-30 05:25

    If you just want a selector for href's using "tel" you can use css attr "starts with" selectors, like so...

    a[href^="tel"] { color: red; }
    

    See my example here: http://jsfiddle.net/blowsie/gn9Ld/

提交回复
热议问题