Same font except its weight seems different on different browsers
问题 The text is correctly displayed in Chrome. I want it to display this way in all browsers. How can I do this? I was able to fix this in Safari with -webkit-font-smoothing: antialiased; Chrome: Firefox: h1 { font-family: Georgia; font-weight: normal; font-size: 16pt; color: #444444; -webkit-font-smoothing: antialiased; } <h1>Hi, my name</h1> And a JSFiddle: http://jsfiddle.net/jnxQ8/1/ 回答1: Be sure the font is the same for all browsers. If it is the same font, then the problem has no solution