Bootstrap's Togglable Tabs - Removing outline / focus ?

前端 未结 8 1609
借酒劲吻你
借酒劲吻你 2021-02-01 15:15

I am using Toggable Tabs from Twitters Bootstrap

The problem I have, Even you can see from the example too. That when the user clicks the tab, The active tab has the dot

8条回答
  •  北海茫月
    2021-02-01 15:39

    You mean the outline, you can remove it as follows:

    .nav-tabs > .active > a, .nav-tabs > .active > a:hover {
      outline:none;
    }
    

    Though i would suggest you leave it in, since it is there in part to help people with disabilities and screen readers display your content properly, so you would be affecting usability by removing it.

提交回复
热议问题