I've got Arial as my base font and I'm trying to use a variety of font-weights for different sections of the page (normal, bold/700, and 900)
This seems to work fine in both Firefox and Internet Explorer, but in Google chrome there seems to be absolutely no difference between bold/700 and 900!?
See fiddle
(incase the above link is broken/invalid)
HTML:
<p id="one">Testing</p>
<p id="two">Testing</p>
<p id="three">Testing</p>
CSS:
p { font-family: arial; font-size: 40px; margin: 0; }
#one { font-weight: normal; }
#two { font-weight: 700; }
#three { font-weight: 900; }
I've googled a bit and found a similar question which provides a semi-usefull answer:
Solved with:
font-weight: 900; font-family: "Arial Black", Arial, sans-serif;
But using the above simple makes everything assume a font-weight
of 900 in Chrome (even when specified otherwise)
For an example of this see here (in Chrome obviously)
Is this a bug in Chrome? Or am I doing something wrong here?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…