viewport

Is viewport META tag broken in Mobile Safari when in webapp mode?

On an iPad using Safari, go to this page: http://ifelse.org/projects/errors/viewport/test.html This is the Source: <html> <head> <title>Viewport Test</title> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black" /> <meta name="vi...

focus is causing problems on 1page website design

I have a 1page website that is driven by jquery scrollTo plugin which, I guess, doesn´t matter in my case. The problem seems to be the 1page design. If I click the tab, the entire design is messing up because the tab jumps to whatever it can find to focus on. That includes places that are outside of the current viewport area.Actually I d...

How to center align the maximum-scale viewport zoom for iphone

When I set a maximum scale and when I rotates orientations back and forth, the web page isn't centered on the phone. So using this code <meta name="viewport" content="width=device-width; initial-scale=0; maximum-scale=2;"> How can I mimic the CSS effect of margin: 0 auto;. ...