Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>The pages now specify</p> <ul> <li>{ font-family: Helvetica,Verdana,Tahoma,Arial,sans-serif; }</li> </ul> <p>and this is not overridden for the large table containing the stitch pattern. It is quite possible that Helvetica exists in different versions, with varying character coverage; Mac specialists might know about this. But in most computers of the world, there is no font under that name. On such computers, browsers will either use one of the other fonts, failing to display many of the characters as e.g. Verdana does not contain them, or (more usefully, and in accordance with CSS specs) scan thru the font list until they find one that contains the character being displayed and ultimately falling back to some system−dependent font.</p> <p>For better predictability and robustness, you could use</p> <p>td { font-family: "Arial Unicode MS", "Lucida Sans Unicode", "DejaVu Sans", "Quivira", "Symbola", "Code2000", ; }</p> <p>Cf. to font coverage information: <a href="http://www.fileformat.info/info/unicode/char/25ec/fontsupport.htm" rel="nofollow">http://www.fileformat.info/info/unicode/char/25ec/fontsupport.htm</a> But you would really need to check that each of the fonts you list contains all of the characters you use in the table.</p> <p>Other options: 1) Use font embedding (font @face) for some suitable font for which embedding is allowed—but this would probably involve considerable overhead since any font that contains all those characters is probably <em>big</em>. 2) Use small images instead of the special characters.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload