css - Is there a bug in the new iOS 7.1 minimal-ui viewport setting? -


the new "minimal ui" setting in ios 7.1 great landscape websites. web app uses fullscreen, absolute positioned div content, give app-like feeling. safari seems add height of url bar @ bottom. have tried on different iphones, same result...

here how looks after pages loaded: space @ bottom after load

is bug or doing wrong or missing?

click example (view on iphone ios >= 7.1)

i had same problem iphone5+ios7.1+minimal-ui. code fixes trouble.

window.addeventlistener('scroll', function () {     // not scroll when keyboard visible      if (document.activeelement === document.body && window.scrolly > 0) {         document.body.scrolltop = 0;     } }, true); 

Comments

Popular posts from this blog

android - Get AccessToken using signpost OAuth without opening a browser (Two legged Oauth) -

org.mockito.exceptions.misusing.InvalidUseOfMatchersException: mockito -

google shop client API returns 400 bad request error while adding an item -