Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在测试 phonegap android 做某事,我想隐藏链接和输入标签上的轮廓。
outline:0;
没用。
我该如何隐藏它?
谢谢。
尝试这个:
input:focus, textarea:focus { -webkit-tap-highlight-color: rgba(255, 255, 255, 0); -webkit-user-modify: read-write-plaintext-only; }
对于链接和输入标签
a, input { outline:0; border:none; }