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.
我正在开发一个用于移动设备的主网站版本。我正在尝试从输入文本字段中删除橙色边框...
到目前为止,我尝试了这个:-webkit-tap-highlight-color: rgba(255, 255, 255, 0);和outline:none;! border:0pximportant.. 它只适用于 Chrome 桌面而不是 Android。
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
outline:none;
border:0px
请注意,我不是在开发应用程序,所以我无法使用这个EditView东西..
EditView
即使不可能,也会感谢任何答案。
简短的回答,你不能。唯一的技巧是使对象不是 href 链接或输入按钮。但是你在 CSS 中所做的任何事情都不会覆盖它。这很烦人。
对于其他一切,使用这个:
-webkit-tap-highlight-color:rgba(0,0,0,0);
这个 CSS 对我有用:
*:focus { outline: none; }