Preventing iPhone scaling when rotated - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T00:50:33Zhttp://stackoverflow.com/feeds/question/912681http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/912681/preventing-iphone-scaling-when-rotated3Preventing iPhone scaling when rotatedceejayoz2009-05-26T20:48:19Z2009-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#9127793Answer by nduplessis for Preventing iPhone scaling when rotatednduplessis2009-05-26T21:10:15Z2009-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#15803300Answer by anna for Preventing iPhone scaling when rotatedanna2009-10-16T20:49:39Z2009-10-16T20:49:39Z<p>THANK YOU! I've been looking everywhere for this answer!</p>