How to remove the border highlight on an input text element

前端 未结 18 1433
庸人自扰
庸人自扰 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:32

    You can try this also

    input[type="text"] {
    outline-style: none;
    }
    

    or

    .classname input{
    outline-style: none;
    }
    

提交回复
热议问题