我目前正在使用Blackberry网络应用,但在删除链接上的默认蓝色突出显示时遇到问题。我按照黑莓网站上的指南进行了操作,并添加了:
<meta name="x-blackberry-defaultHoverEffect" content="false" />
和css
a:hover{background-color:transparent}
我尝试过各种各样的背景css属性而没有运气。
这些都不起作用。
答案 0 :(得分:2)
3年后,所以这可能不会帮助提问者,但为了防止其他人遇到它,我找到了神奇的隐藏属性来解决这个问题:
-webkit-tap-highlight-color: transparent;
答案 1 :(得分:0)
我遇到了同样的问题。在我的CSS中,我用过:
/* Links */
a, a:link, a:visited, a:active{
cursor: pointer;
text-decoration:none;
color: #353535;
font-weight: bold
}
a:hover{
text-decoration: none;
}
a:focus {
outline: none;
}
然后:
#my-content .txt a{
color: #BF3232;
font-weight: normal;
cursor: default;
text-decoration: none;
}
#my-content .txt a:hover{
text-decoration: none;
}
它对我有用。
干杯。