0

我正在测试 phonegap android 做某事,我想隐藏链接和输入标签上的轮廓。

outline:0;

没用。

我该如何隐藏它?

谢谢。

4

2 回答 2

0

尝试这个:

input:focus, textarea:focus {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);   
  -webkit-user-modify: read-write-plaintext-only;
}
于 2013-01-29T09:04:22.520 回答
0

对于链接和输入标签

 a, input
        {
        outline:0;
        border:none;
        }
于 2012-04-09T10:46:53.850 回答