去除移動端瀏覽器點擊元素時的邊框

手機(特別是Android)瀏覽器中點擊元素 a, input, div中的文字時, 還有一個邊框css

要去除邊框, 能夠爲元素添加以下csshtml

/* 來自Pure.css http://purecss.io/*/
-webkit-user-drag: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;

/* 來自http://www.cnblogs.com/PeunZhang/archive/2013/02/28/2907708.html*/
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-tap-highlight-color: transparent; /* For some Androids */

/*http://stackoverflow.com/a/5522742*/
-webkit-user-modify: read-write-plaintext-only;  //android 4.0.4
相關文章
相關標籤/搜索