Google Chrome is not antialiasing my text even though I added code specific for Google Chrome to do so.
On a weird note, Firefox, which was said to be incompatible with the code I had added does antialias the text appropriately.
Here's the specific CSS styling:
.jumbotron h1 {
color: white;
font-size: 100px;
text-align: center;
line-height: 1;
/*
* Webkit only supported by Chrome and Safari.
*/
-webkit-font-smoothing: antialiased;
}
Chrome:
Firefox:
As you can see above (and probably on the website) the font is much better looking on Firefox.
Just set Font weight to Normal. This seems to solve the issue in Chrome.
so my CSS that works for me is:
}