Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know there is conditional CSS by browser but I'm interested to see if there is conditional CSS by OS. Here is my motivation:

I developed a website using custom fonts via CSS3. The font looks beautiful on all browsers running on Mac OSX but look horrendous on all browsers running on Windows. I know this is due to the fact that OSX and Windows renders fonts differently.

As a temporary solution to this problem, I want all users on Windows browsers to use an alternative CSS file, where the custom font will not be used-- and instead revert back to a system font like Helvetica.

Anyone have any ideas how to do this?

Or if not, is there a way to make fonts look better on Windows? I tried

-webkit-font-smoothing: antialiased;

with no avail.

share|improve this question
Custom fonts should look fine on Windows too. Which browser/OS are you particularly concerned about? – Ben Jul 24 '12 at 2:54
@Ben: Chrome on Windows. It looks slightly better on Windows Safari, but not much (And no where near as good as on OSX). Here's screenshot comparisons of Windows Chroms vs. Mac Chrome: cl.ly/image/0a382v31210L (and on Windows, that WITH -webkit-font-smoothing: antialiased;) – jp89 Jul 24 '12 at 3:04
Does it get better if you set the font to a different fixed px size? (I've had problems before with em size becoming decimal pixel values. e.g 13.3px) – Ben Jul 24 '12 at 4:00
@Ben: Everything is set to px and not em. I never was a fan of using ems. – jp89 Jul 24 '12 at 4:04
Which font are you using? can you post the relevant css that load the font face and sets the styles for the area in your screenshot? – Ben Jul 24 '12 at 4:18
show 1 more comment

1 Answer

This looks like a good option. It is a jquery based solution. Once you detect the os you can add the css like this: (got code from here)

$('head').append('<link rel="stylesheet" href="os-windows.css" type="text/css" />');
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.