简体   繁体   中英

HTML: how can I remove this dotted line?

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

How can I remove the dotted 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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM