skip to Main Content

I have a problem. When I go to responsive mode, the overflow x are enabled and I don’t know how to disable it.
I try to @media disable overflow but its not work

2

Answers


  1. @media screen and (max-width: 768px) {
      body {
        overflow-x: hidden;
      }
    }
    

    If this doesn’t work, there may be other CSS rules that are overriding your code.

    Login or Signup to reply.
  2. You can add the overflow-hidden to the div class without having it in the CSS file. Here is some documentation.

    Overflow Utility – Bootstrap

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search