I\'m trying to make a website that works well on mobile phones. So far every phone that I have tested works well, but phones with Windows Mobile IE. It seem that Mobile IE just
Mobile IE seems to only respect the viewport meta tag if you're specifying an actual width. To get the page width to follow the actual device width, use a mobileoptimized meta tag with content set to 0:
Details on MSDN: http://msdn.microsoft.com/en-us/library/dd938878.aspx
If you combine this with the viewport meta tag as above, this should give you what you're looking for across most mobile browsers.