0

I am having an issue with a section of text looking "bolder" on Windows then it does on Mac.

How do I get it displaying the same?

Both browsers are Chrome and its only happening in Chrome.

CSS:

#featured-slider .slide-content header h1 a, #featured-slider .slide-content footer h1 a {
color: #fff;
font-size: 20px;
font-family:'Open Sans', arial, sans-serif;
-webkit-font-smoothing: antialiased;
}

Mac:

enter image description here

Windows: enter image description here

4

2 回答 2

0

尝试使用这样的简写属性:

font: normal 20px 'Open Sans', arial, sans-serif !important;
于 2013-08-07T03:33:11.323 回答
0

您设置 css 的方式,如果第一个选项不可用,它将默认为不同的字体。我无法从图片中判断它是否正在这样做。

这也可能是“font-weight”属性的变化。

看看添加这个是否修复它:

font-weight:normal; 

或者:

font-weight:400;
于 2013-08-07T02:56:13.683 回答