How To Remove Outline Border From Input Button

后端 未结 14 1651
有刺的猬
有刺的猬 2020-12-02 08:43

when click somewhere else the border disappears, tried onfocus none, but didn\'t help, how to make ugly button border disappear when click on?

14条回答
  •  忘掉有多难
    2020-12-02 09:23

    Focus outlines in Chrome and FF

    enter image description here enter image description here

    removed:

    enter image description here

    input[type="button"]{
       outline:none;
    }
    input[type="button"]::-moz-focus-inner {
       border: 0;
    }
    

    Demo

    Accessibility (A11Y)

    /* Don't forget! User accessibility is important */
    input[type="button"]:focus {
      /* your custom focused styles here */
    }
    

提交回复
热议问题