0

我在我的 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;
}
4

1 回答 1

0

我已更改a.linkbold:active颜色并删除活动状态下的下划线。活动状态的颜色变为正常。

于 2012-12-20T07:05:32.147 回答