Getting rid of the blue focus rectangle on input boxes in HTML/CSS?

后端 未结 1 928
小鲜肉
小鲜肉 2021-02-04 23:43

I\'m running Mac OS so I can\'t really tell if this effect is presented on windows machines or not, so I apologize if this effect is not seen for you.

Input and TextFiel

相关标签:
1条回答
  • 2021-02-05 00:11

    It is in fact a CSS attribute. This will hide that glowing effect:

    input:focus, textarea:focus {
        outline: none;
    }
    
    0 讨论(0)
提交回复
热议问题