开发者

HTML: how can I remove this dotted line?

开发者 https://www.devze.com 2022-12-26 06:01 出处:网络
I\'m using Drupal for a website, and I\'ve a link "Unselect All" to deselect all items. How can I remove the dotte开发者_JS百科d line around "Unselect All" when I click on it ?????

I'm using Drupal for a website, and I've a link "Unselect All" to deselect all items.

How can I remove the dotte开发者_JS百科d line around "Unselect All" when I click on it ?????

Check this link.

thanks


a.bef-toggle:link, a.bef-toggle:visited, a.bef-toggle:active {
    outline: none;
}

Please take heed of David's comments on the question though, this has accessibility side effects that you need to be aware of.


I simply set outline to none for all and any link:

a {
 outline: none;
}

Side Note: This property does not work however in IE < 8.

0

精彩评论

暂无评论...
验证码 换一张
取 消