difference between Firefox and Chrome padding

后端 未结 6 485
野趣味
野趣味 2021-02-05 04:56

there is a difference in how firefox and chrome render the padding in css. what appears correct in chrome is extra padded in firefox. is there a way to solve?

.b         


        
6条回答
  •  一生所求
    2021-02-05 05:24

    If your .button is a button this might be a mozilla inner focus thing... try this?

    .button::-moz-focus-inner { border: 0; padding: 0; margin:0; }
    

提交回复
热议问题