EDIT: Example here: [Live example deleted - answer to question]
I am trying to display this header font the same way and it looks different between operating systems. All OSX and Ubuntu browsers display it the same way, but when I test it on a Windows computer, it displays differently. The way to display on OSX is how I want it to be displayed (with the tiny part of the bottom hidden behind the bottom element).
If I changed the CSS (add padding or line height), he fixed it for Windows, but twisted it for OSX.
Is there any work that is not related to the need to set special and special selectors on the page via javascript or something like that? I am trying to keep the code as clean as possible (i.e. the least dangerous fixes are possible).
CSS for the title and H1:
#header { height:70px; overflow:hidden; background-image: url('header-canvas2-bg.png'); background-repeat: repeat-x; background-attachment: fixed; } #header h1 { font-size: 100px; font-family:'Josefin Sans'; text-align: left; color:#ffffff; }
HTML for the title:
<head> <link href='http://fonts.googleapis.com/css?family=Josefin+Sans:700' rel='stylesheet' type='text/css'> </head> <body> <div id="header"> <h1><a href="#">testing font</a></h1> </div> </body>
Chrome on OSX displays

In Chrome on Win 7 are displayed

EDIT: Example here: [Live example deleted - answer to question]
source share