I discovered Chrome doesn't align Verdana similar to Firefox on OS X. For example, the following CSS rule is applied for comparison:
font-family:verdana;
font-size:12px;
line-height:auto;
This image shows the differences between browsers (Chrome 22, Firefox 14) on each operating system (Mac OS X 10.8, Windows 7).
Here is the corresponding jsfiddle to play around with:
body {
font-family: verdana;
font-size: 12px;
line-height: auto;
}
.banner {
background: #e2e2e2;
text-decoration: none;
color: black;
}
.fixed {
line-height: 15px;
}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Verdana</title>
</head>
<body>
<p class="banner">
1.) line-height: auto
</p>
<p class="banner fixed">
2.) line-height: 15px
</p>
</body>
</html>
How do you vertical align text on a button in the middle of a button - Cross browser and cross OS?