How to remove button outline in Opera on focus

前端 未结 12 1676
孤城傲影
孤城傲影 2021-01-02 18:54

Does anybody know how to remove the dotted outline on buttons in Opera?

12条回答
  •  南方客
    南方客 (楼主)
    2021-01-02 19:09

    Are you looking for:

    button{
      outline:none;
    }
    

    or if your button is an input...

    input[type=button]{
      outline:none;
    }
    

提交回复
热议问题