ahref - 隐藏选择颜色

发布于 2024-12-11 16:03:21 字数 113 浏览 0 评论 0原文

我在 iPhone 应用程序中使用了一些 HTML。我对 HTML 不太了解。
当我们触摸任何超链接(HTML 中的 ahref)时,包含 ahref 的“li”中会出现蓝色选择颜色。我们怎样才能禁用它?

I am using a bit of HTML in my IPhone application. I don't have much idea about HTML.
When we touch any hyperlink(ahref in HTML) there is a blue selection color that appears in "li" which contains ahref. How can we disable it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

感性不性感 2024-12-18 16:03:21

您可以通过 css 指定链接的自定义颜色来覆盖该行为:

a { color:green; }

或者根据其状态(例如活动、单击等):

a:active { color:green; }
a:visited { color:red; }
a:hover { color:orange; }

You can override the behaviour by specifying your custom color for links via css:

a { color:green; }

Or based on their status eg active, clicked, etc:

a:active { color:green; }
a:visited { color:red; }
a:hover { color:orange; }
梦在夏天 2024-12-18 16:03:21

我不是 100% 确定,但如果文本确实被选择,并且您看到蓝色,那么解决方法是应用如下样式:

li::selection {
  background-color: transparent;
}
li::-webkit-selection {
  background-color: transparent;
}
li::-moz-selection {
  background-color: transparent;
}

只有当它确实是正在发生的选择时。请注意,只有 ::selection 以及 :-webkit-selection 可能适用于 iPhone。 ::-moz-selection 适用于 Firefox 浏览器。

I'm not 100% sure, but if the text is truly being selected, and you're seeing a blue color, then the fix would be to apply a style like this:

li::selection {
  background-color: transparent;
}
li::-webkit-selection {
  background-color: transparent;
}
li::-moz-selection {
  background-color: transparent;
}

That's only if it truly is a selection that's occuring. Mind you, only the ::selection and maybe the :-webkit-selection could possibly apply to an iPhone. ::-moz-selection would be for a Firefox browser.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文