I have a very simple button. The text appears right centered vertically respect the square when you see it in Safari or Chrome. But in Firefox the text is not centered vertically (it looks down) How to solve this?
HTML:
<div class="buy">mmmmm</div>
CSS:
body {
font-family:Tahoma;
color:#fff;
font-size:11px;
letter-spacing:1px;
}
.buy {
position:absolute;
width: 70px;
height: 20px;
line-height:20px;
top:50px;
left:50px;
text-align:center;
background-color:#bbb;
}