我在我的 Extjs 应用程序中使用链接,我面临悬停状态的问题。
当我右键单击任何链接时,它会显示悬停状态,直到我单击外部。一旦我在外面点击它就正常了。
我想将鼠标从该链接移开后立即显示正常状态。
这是我的CSS。
.linkbold{
color:#0080cc;
font-family:Tahoma;
font-size:11px;
text-decoration:none;
font-weight:bold !important;
}
a.linkbold:link, a.linkbold:visited{
color:#0080cc;
font-family:Tahoma;
font-size:11px;
text-decoration:none;
background-color: #red;
font-weight:bold !important;
display:block;
}
a.linkbold:hover{
color:#000000;
font-family:Tahoma;
font-size:11px;
text-decoration:none;
font-weight:bold !important;
}
a.linkbold:active{
color:#000000;
font-family:Tahoma;
font-size:11px;
text-decoration:underline !important;
font-weight:bold !important;
display:block;
}