Having an issue with styling a search button in Firefox. The input submit is created using an iconic font, white background, and border-radius as shown below:
display: block;
width: 60px;
height: 60px;
line-height: 60px !important;
padding: 0;
background: white;
border: 0;
border-radius: 30px;
-moz-border-radius: 30px;
-webkit-border-radius: 30px;
-khtml-border-radius: 30px;
font-family: 'iconic';
color: #bad104;
font-size: 5em;
In Chrome and IE it looks perfect :
But in Firefox, this is what I see:
After inspecting the DOM on both browsers, I noticed that "calculated values" differ - specifically line-height between Chrome (60px) and Firefox (67px).
I've tried various solutions without success so far. Any guidance would be greatly appreciated!
Thank you!