overflow-x hidden is not working on mobile 1


Overflow-x hidden is not working on mobile

If the mobile view has an overflow issue, try to solve it with the

overflow:hidden css

 

CSS:

body

{

overflow: hidden;

}

If overflow is not working, check if meta tag of header is correct or not. Replace the metatag with the following:

 

  <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">

Hope it worked!