一行文字垂直居中,相信大家都会使用行高。但大家有没有发现,在button标签里的文字,使用行高来居中,在firefox里文字会偏下,如图:

解决firefox的button按钮文字不能垂直居中

 

经研究发现firefox的button和input有私有属性 

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

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

加上上面的属性,button的文字就能在firefox里居中了

 

转载于:https://www.cnblogs.com/zhengenru2008/archive/2013/04/19/3030032.html

相关文章:

  • 2021-12-08
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-04
  • 2022-12-23
  • 2021-12-02
猜你喜欢
  • 2021-12-06
  • 2022-02-10
  • 2022-12-23
  • 2021-09-08
  • 2021-09-17
相关资源
相似解决方案