Search code examples
htmlcsstwitter-bootstrapscrollbarbrowser-scrollbars

How to remove long horizontal scrollbar from HTML page


I am starting one project using twitter bootstrap, however I got one issue. There is a long empty scrollbar horizontally. I can't find the problem, does anyone knows whats the problem?

Thanks


Solution

  • <style>
    body {
      overflow-x: hidden !important;
    }
    body > * {
      max-width: 100% !important;
    }
    </style>