Reputation: 87763
I have a web page that displays on the Android and I would like to make the android not recreate the 1000+ pixel wide layout that is typical My layout will work well with only 300px or less. How can I tell this to the Android Browser?
Upvotes: 1
Views: 1644
Reputation: 47592
Try the new viewport
argument;
<meta name="viewport" content="width=300">
also see http://www.quirksmode.org/mobile/viewports2.html
Upvotes: 3