在firefox

时间:2015-05-18 17:56:51

标签: javascript html css firefox

我在firefox中看到一个额外的虚线用于焦点上的输入选择而不是其他浏览器,只是想知道有没有快速的解决方法呢?下面附上截图,它通常会在浏览器中舔其他地方后消失。

input select glitch

1 个答案:

答案 0 :(得分:0)

你可以尝试这个(黑客)(基于这个答案:https://stackoverflow.com/a/11603104/1236396

select {
  color: #000;
  color: rgba(0,0,0,0);
  text-shadow: 0 0 0 #000;
}

或者这个(基于这个答案:https://stackoverflow.com/a/18853002/1236396

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