Remove dotted border/outline of focused dropdown menu

前端 未结 2 565
醉梦人生
醉梦人生 2021-02-12 15:31

How do you remove the dotted border/outline that is shown when selecting an item from a dropdown menu?

\"enter

相关标签:
2条回答
  • 2021-02-12 15:42

    On windows 7 and IE9 no border/outline is shown, Instead a blue background is shown. The blue background and in your case the border/outline is managed by the OS. I suspect your are on a Mac?

    Remove outline from select box in FF

    How to remove Firefox's dotted outline on BUTTONS as well as links?

    0 讨论(0)
  • 2021-02-12 16:08

    Add the following to your stylesheet. -

    select:-moz-focusring { color: transparent;
                            text-shadow: 0 0 0 #000; }
    

    Has always worked for me, hope it helps!

    0 讨论(0)
提交回复
热议问题