How to remove button outline in Opera on focus

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

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

12条回答
  •  轮回少年
    2021-01-02 18:57

    Remove outline for anchor tag

    a {outline : none;}
    

    Remove outline from image link

    a img {outline : none;}
    

    Remove border from image link

    img {border : 0;}
    

提交回复
热议问题