0
我在Extjs應用程序中使用鏈接,我面臨着懸停狀態的問題。當我右鍵點擊它時,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;
}