How do I remove blue “selected” outline on buttons?

前端 未结 4 1864
迷失自我
迷失自我 2020-11-30 10:33

I have some buttons using

4条回答
  •  南方客
    南方客 (楼主)
    2020-11-30 11:13

    That is a default behaviour of each browser; your browser seems to be Safari, in Google Chrome it is orange in color!

    Use this to remove this effect:

    button {
      outline: none; // this one
    }
    

提交回复
热议问题