How to remove the border highlight on an input text element

前端 未结 18 989
庸人自扰
庸人自扰 2020-11-22 05:49

When an HTML element is \'focused\' (currently selected/tabbed into), many browsers (at least Safari and Chrome) will put a blue border around it.

For the layout I a

18条回答
  •  清酒与你
    2020-11-22 06:41

    You could use CSS to disable that! This is the code I use for disabling the blue border:

    *:focus {
        outline: none;
    }
    

    This is a working example

提交回复
热议问题