Overflow-x:hidden; on mobile device not working

后端 未结 6 1886
广开言路
广开言路 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:09

    if you applied overflow-x:hidden to the body, you might wanna apply to html too.

      body,html {
    overflow-x:hidden;
    }
    

提交回复
热议问题