css - What are cross-browser, cross platfom web safe fonts? -
How to create cross-browser, cross-platform and compatible CSS font stacks for all devices?
You can not guarantee fonts that will be used on a mobile device in the same way You can guarantee the fonts available on normal computers.
A safe bet is to use a normal font family that can be interpreted by a mobile browser to show you relevant fonts, such as
font-family : Serif; / * (E.g., times) * / font-family: sans-serif; / * (E.g., helvetia) * / font-family: monospace; / * (E.g., courier) * /
Comments
Post a Comment