Overflow-x:hidden; on mobile device not working

后端 未结 6 1889
广开言路
广开言路 2021-01-02 00:31

I hope you guys can help me cause I cant seem to wrap my head arroud this. I build a one-page site which works fine, except for one thing, which is the overflow-x:hidden on

6条回答
  •  情歌与酒
    2021-01-02 01:27

    Found the answer actually here on Stack overflow:

    The browsers on mobile devices ignore the overflow-x:hidden within the body and html tag if tag is present, thus i created a wrapper in the body tag covering the rest of my content with a overflow-x: hidden in it, solving the problem.

    Documentation:

    Overflow-x:hidden doesn't prevent content from overflowing in mobile browsers.

    The bad thing is that it prevents the use now of a jquery plugin, that scrolls....

提交回复
热议问题