去掉a標籤的感應虛線

IE瀏覽器:
a {
blr:expression(this.onFocus=this.blur());
}

FF瀏覽器:
a {
outline: none;
}
或者縮小範圍:
a:focus {
outline: none;
}
後者使得鼠標左鍵在鏈接上按下,鬆開之前的這段時間裏,仍會顯示虛線的outline.
a:active {star:expression(this.onFocus=this.blur());} 


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章