[CSS] ipad Safari input text 的兼容问题。 怎么把上面那个自带阴影去掉?

http://bbs.blueidea.com/thread-3073843-1-1.html

 

input[type="text"], input[type="email"], input[type="search"], input[type="password"] ,input[type="tel"]{
    -webkit-appearance: caret;
    -moz-appearance: caret; /* mobile firefox too! */
}

上方会影响安卓机的兼容,下方不会

 

 

input[type="text"], input[type="email"], input[type="search"], input[type="password"] ,input[type="tel"]{
    -webkit-appearance:none;
    outline:none;
}

posted on 2015-06-09 16:11  鬼鬼丫404  阅读(230)  评论(0编辑  收藏  举报

导航