Android 浏览器 - 当锚点聚焦时删除轮廓边框
我在我的 Android 应用程序上使用一个加载外部页面的 webview。 它有一些锚点( 标签)。当我按下它时,会出现黄色边框。
我怎样才能防止它并删除这个边框?
我尝试过以下技巧:
// jQuery
$("a").focus(function(){
$(this).attr("hideFocus", "hideFocus");
});
// CSS
a, :focus {
outline: none;
}
但没有成功。
谢谢 !
I am using on my Android app a webview which loades an external page.
It has a few anchors (<a>
tags). When I press on it, yellow border appears.
How can I prevent it and remove this border ?
I've tried following tricks:
// jQuery
$("a").focus(function(){
$(this).attr("hideFocus", "hideFocus");
});
// CSS
a, :focus {
outline: none;
}
but with no success.
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
设置 CSS 属性 -webkit-tap-highlight -color 如下:
注意:由于 webkit 渲染高亮的方式,以其他方式设置颜色通常会失败。根据我的经验,取决于版本/变体。
Set the CSS property -webkit-tap-highlight-color as follows:
Note: setting the color in other ways usually fails because of the way webkit renders the highlight. Depends on version/variant according to my experience.
根据这个 发布它更好用
according to this post it's better to use