Are you writing custom pages for iPhone web apps? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T19:34:50Zhttp://stackoverflow.com/feeds/question/279895http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/279895/are-you-writing-custom-pages-for-iphone-web-apps1Are you writing custom pages for iPhone web apps?MikeJ2008-11-11T03:04:18Z2008-11-11T14:02:50Z
<p>I read the tutorials for web applications and the special rules you can put into style sheets. Are folks finding they can just tweak their style sheets to serve up content to iPhones or do they deliver custom iPhone specific pages? would you bother with this if you were going to create a specific page anyway for mobile users ? (even if targetted at iphone/smartphone users only) </p>
<p>Any advice would be appreciated</p>
http://stackoverflow.com/questions/279895/are-you-writing-custom-pages-for-iphone-web-apps/280676#2806762Answer by postback for Are you writing custom pages for iPhone web apps?postback2008-11-11T11:40:31Z2008-11-11T11:44:27Z<p>You can indeed trap the incoming request, find out it's an iPhone/SmartPhone/Mobile device, and serve other CSS files accordingly.</p>
<p>I would not define extra mobile-specific rules/selectors in a CSS file, but serve another, trimmed down and prepared CSS file.</p>
<p>But that will only alter the way your HTML looks, and not what you serve to the client, in this case a mobile device.</p>
<p>Mostly, we serve other HTML as well, as you have to take bandwidth into account. We serve 'less' HTML, i.e. a trimmed down version,of the original page, to mobile devices.</p>
<p>Look at what Twitter does for mobile devices: <a href="http://m.twitter.com/login" rel="nofollow">http://m.twitter.com/login</a>
They not only serve another look, they also serve other HTML and less functionality (or less functionality on one page).</p>