There is a wide range of web capable devices that require different display adjustments, not only mobile phones. Maybe I'm wrong but I think that the m. sub-domain will be the same burden as WWW or http: or :80.

CSS enables us to ensure a proper display in all media, so why are so many publishers and evangelists promoting creating mobile sub-domains?

link|improve this question

40% accept rate
3  
Well, for one you don't want to load a lot of content that ends up being hidden away. "Mobile" versions of pages are also probably so much different that it's easier to make a whole different page than try to move stuff around with CSS. Just my 2cc. – Zecc Aug 3 '11 at 8:38
1  
And you dont want to be asking this on StackOverflow. Go To webmasters.stackexchange.com – Spacedman Aug 3 '11 at 8:41
“I think that the m. sub-domain will be the same burden as WWW or http: or :80.” — i.e. no appreciable burden at all? – Paul D. Waite Aug 3 '11 at 9:52
feedback

4 Answers

Websites do this mostly for when they want to customize more than the look of the website for mobile clients. Most websites (and web apps) serve, besides different CSS, less HTML and less JavaScript to their mobile clients, in order to speed up loading times and rendering times (mobile devices are much less capable in terms of CPU power than desktops / laptops).

Because of this, it makes sense to Keep Things Separate™ and create a new app, on a different domain. This way, the two apps (desktop and mobile) are easier to maintain.

link|improve this answer
And what about responsive web design, polyfills, media queries, fallbacks etc. I think this is the way to go. – opengrid Jan 19 at 11:21
feedback

m.* domain do not only change the graphical style of the original website. Here's what I've seen:

  • lazy content loading for lowering bandwith (ex: gmail which display only a few mails)
  • less widgets (ex: chat, applications in Facebook mobile site [not the application])
  • different interactions (touch, I know there is a touch version of facebook, besides the mobile basic one)

there must be many other changes.

link|improve this answer
feedback

With CSS you can control the presentation of the document, not the document iself.

A user surfing the web with a small device screen may not be interested in reading tons of lines of text, but only useful informations.

A website made for desktop users usually contain lot of html code, scripts, images and other resources the browser has to download. A user using a handheld device may find it too slow to load, or consume too much bandwidth, or the JS code may be sloppy and make the site virtually impossible to navigate.

Also many external loaded resources won't be cached by many handheld devices until their size is really lightweight.

link|improve this answer
feedback

In many cases, due to the nature of the smaller device, no keyboard/mouse and marketing strategies, it is not always optimal to "duplicate" a website on mobile devices. For example, maybe you want to offer the ability for a visitor to locate a store, or immediately have the ability to dial your number.In many cases, a website designed for a standard computer resolution is simply not that functional in a mobile device.

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.