I have a mobile web application with an unordered list containing multiple listitems with a hyperlink inside of each li:

<ul>
    <li id="home" class="active">
        <a href="home.html">HOME</a></div>
    </li>
    <li id="home" class="active">
        <a href="test.html">TEST</a></div>
    </li>
</ul>

...My question is how can I format the hyperlinks so that they DON'T change size when viewed on an iPhone, and the accellerometer switches from portrait -> landscape? Right now, I have the hyperlink font size spec'ed to 14px, but when switching to landscape, it blows way up to like 20px. I want the font-size to stay the same. Here is the selector:

ul li a
{
   font-size:14px;
   text-decoration: none;
   color: #cc9999;
}
link|improve this question

60% accept rate
feedback

4 Answers

up vote 35 down vote accepted

You can disable this behavior through the -webkit-text-size-adjust CSS property:

html {
    -webkit-text-size-adjust: none; /* Prevent font scaling in landscape */
}

The use of this property is described further in the Safari Web Content Guide.

link|improve this answer
Works great! Thanks for the tip. – DShultz Apr 26 '10 at 13:19
3  
As snobojohan notes you can wrap this in a landscape-specific media query to preserve the ability to increase the font size on desktop browsers. This is not necessary on iOS-targeted pages where pinch zooming will work regardless. – Matt Stevens Feb 18 '11 at 22:04
feedback

Using -webkit-text-size-adjust: none; directly on html breaks the ability to zoom text in all webkit browsers. You should combine this with som media queries specific for iOS. For example:

@media only screen and (min-device-width : 320px) and (max-device-width : 1024px) {
     html {
        -webkit-text-size-adjust: none;
     }
}
link|improve this answer
Funnily enough I only got it to work by putting the -webkit property inside the media query. Thanks! – zuallauz Nov 30 '11 at 3:18
feedback

You can add a meta in the HTML header:

<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />

link|improve this answer
feedback

I just tried this and it does not seem to work on an iPod touch running iOS 4.2 - the very same code does work on The New iPad (retina).... anyone else able to confirm this?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.