Preventing iPhone scaling when rotated - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T00:50:33Z http://stackoverflow.com/feeds/question/912681 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/912681/preventing-iphone-scaling-when-rotated 3 Preventing iPhone scaling when rotated ceejayoz 2009-05-26T20:48:19Z 2009-10-16T20:49:39Z <p>When I rotate my iPhone into landscape mode, the iPhone automatically bumps the text size up.</p> <p>What is the best way to prevent this? I'd like rotation to give the visitor more text to read, not a larger font. Is JavaScript <a href="http://www.iphonemicrosites.com/articles/6-tips-to-optimize-your-current-site-for-the-iphone/" rel="nofollow">like this</a> the only way to go?</p> http://stackoverflow.com/questions/912681/preventing-iphone-scaling-when-rotated/912779#912779 3 Answer by nduplessis for Preventing iPhone scaling when rotated nduplessis 2009-05-26T21:10:15Z 2009-05-26T21:10:15Z <p>You could use this CSS property</p> <pre><code>-webkit-text-size-adjust: none; </code></pre> http://stackoverflow.com/questions/912681/preventing-iphone-scaling-when-rotated/1580330#1580330 0 Answer by anna for Preventing iPhone scaling when rotated anna 2009-10-16T20:49:39Z 2009-10-16T20:49:39Z <p>THANK YOU! I've been looking everywhere for this answer!</p>