views:

49

answers:

1

Iphone changes some fonts making the site unproportional and not as originally designed. Is there a way to preserve original?

+2  A: 

Use:

html, body, form, fieldset, p, div, h1, h2, h3, h4, h5, h6 {
    -webkit-text-size-adjust:none;
}

Source: http://www.catswhocode.com/blog/10-useful-code-snippets-to-develop-iphone-friendly-websites (you can find many other nice tips for iPhone specific coding there as well)

alexteg