美文网首页
移动端css 一些样式处理

移动端css 一些样式处理

作者: MuLuo丶 | 来源:发表于2016-04-13 16:22 被阅读0次
    清除ios对按钮和默认的样式和border-radius;
    input[type=button],input[type=submit],input{
        -webkit-appearance:none;
        outline:none;
        border-radius:0;
    }
    
    取消默认点击的背景色
    *{
      -webkit-tap-highlight-color:rgba(0,0,0,0);
    }
    
    

    相关文章

      网友评论

          本文标题:移动端css 一些样式处理

          本文链接:https://www.haomeiwen.com/subject/ndzwlttx.html