Bootstrap's Togglable Tabs - Removing outline / focus ?

前端 未结 8 1833
借酒劲吻你
借酒劲吻你 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:32

    To solve the issue for Firefox and all other browsers, I would use the following CSS:

    /* Remove dotted outline from image inputs */
    input::-moz-focus-inner {
      border: 0;
    }
    
    /* Remove dotted outline from all links */
    a {
     outline: 0;
    }
    

提交回复
热议问题