show/hide this revision's text 2 deleted 1 characters in body

You can indeed trap the incoming request, find out it's an iPhone/SmartPhone/Mobile device, and serve other CSS files accordingly.

I would not define extra mobile-specific rules/selectors in a CSS file, but serve another, trimmed down and prepared CSS file.

But that will only alter the way your HTML looks, and not what you serve to the client, in this case a mobile device.

Mostly, we server 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.

Look at what Twitter does for mobile devices: http://m.twitter.com/login They not only serve another look, they also serve other HTML and less functionality (or less functionality on one page).

show/hide this revision's text 1

You can indeed trap the incoming request, find out it's an iPhone/SmartPhone/Mobile device, and serve other CSS files accordingly.

I would not define extra mobile-specific rules/selectors in a CSS file, but serve another, trimmed down and prepared CSS file.

But that will only alter the way your HTML looks, and not what you serve to the client, in this case a mobile device.

Mostly, we server 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.

Look at what Twitter does for mobile devices: http://m.twitter.com/login They not only serve another look, they also serve other HTML and less functionality (or less functionality on one page).