0
<a id="advertiser_modal" class="min-button in-block" tabindex="-1"> 
 <img width="9" height="10" src="/themes/default/css/images/new-window-icon.png"> Select an Advertiser
</a>

在上面的 html 代码中,我将 img 包裹在锚标记中,具有 tabindex,当我单击 new-window-icon.png 时,图像的大小会下沉,

但是当我尝试删除tabindex时,

<a id="advertiser_modal" class="min-button in-block"> <!--tabindex="-1"-->
  <img width="9" height="10" src="/themes/default/css/images/new-window-icon.png"> Select an Advertiser
</a>

现在,当我单击图像 new-window-icon.png 时,它没有下沉,工作正常,但我希望那个 tabindex 在那里,

请有任何建议,

提前致谢

4

1 回答 1

1

添加outline:none !important

.min-button{outline: none !important; }​

演示http://jsfiddle.net/jQLd4/

感谢您的回复,只是它无法解决我的问题,当我单击图像时,同样的事情正在发生,我的意思是,图像正在下沉。

使用的 CSS

.min-button {
    -moz-border-bottom-colors: none !important;
    -moz-border-left-colors: none !important;
    -moz-border-right-colors: none !important;
    -moz-border-top-colors: none !important;
    background: -moz-linear-gradient(center top , #EF8C41 0%, #D97726 100%) repeat scroll 0 0 transparent;
    border-color: #DE8038 #DE8038 #A3563C !important;
    border-image: none !important;
    border-style: solid !important;
    border-width: 1px !important;
    margin-left: -12px;
}
于 2012-10-10T12:08:29.027 回答