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

Popular posts from this blog

objective c - iPhone and it's wireless area -

unix - Listing all shared memory segments used by a process on AIX5.3+ -

.net - Self Tracking Entities (STE)'s and partial updates with EF4 and mVC2 -