Remove Safari/Chrome textinput/textarea glow

后端 未结 13 935

I am wondering if its possible to remove the default blue and yellow glow when I click on a text input / text area using CSS?

13条回答
  •  鱼传尺愫
    2020-11-28 18:02

    Sure! You can remove blue border also from all HTML elements using *

    *{
        outline-color: transparent;
        outline-style: none;
      }
    

    And

     *{
         outline: none;   
       }
    

提交回复
热议问题