How to reset all default styles of the HTML5 button element

前端 未结 1 963
余生分开走
余生分开走 2021-02-05 07:06

Scenario

I use the

1条回答
  •  旧时难觅i
    2021-02-05 07:24

    button::-moz-focus-inner,
    input::-moz-focus-inner {
      border: 0;
      padding: 0;
    }
    

    add this one also in css it will solve your problem.

    0 讨论(0)
提交回复
热议问题