html - Hidden div not being hidden on mobile -


i'm using bit of css hide div off-screen (and jquery animate in) using :

body {     overflow: hidden; } .hide {     position: absolute !important;     left:100vw !important; } 

on desktop, div being hidden, , no scrolbar appear, on mobile, possible scroll right , see div.

browsers not having issue : chrope/edge/firefox (all latest version of today) on win10 browsers having issue : safari ios (ios 9.x), dolphin android (latest) , firefox mobile (also latest)

see code here : https://jsfiddle.net/nfpwccvj/4/

is there way solve ?

thanks.

you forgot close body }? or it's example mistake?


Comments

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -