Having an issue with the alignment of my buttons in HTML. In Opera, the button appears centered vertically, but in Firefox it seems like the text is slightly lower, messing up the design of my website.
Below is the HTML code for the button:
<input type="submit" value="Log In" id="button-log" />
And here is the corresponding CSS code:
#button-log {
width:70px;
height:30px;
background-color:#1963FF;
}
Everything looks fine in terms of code, so I'm not sure why there's a discrepancy between how Opera and Firefox display the button text alignment.
Any help would be greatly appreciated.