CSS: Size of buttons in Chrome is different than Firefox

后端 未结 8 746
名媛妹妹
名媛妹妹 2021-01-31 10:18

I have the following HTML code:


...
...
8条回答
  •  再見小時候
    2021-01-31 10:59

    /* Remove button padding in FF */
    button::-moz-focus-inner {
        border:0;
        padding:0;
    }
    

    You'll get the same button appearance in Chrome and Firefox.

提交回复
热议问题