0

I cant find the reason of a horizontal scroll bar in my chrome when width of screen is more than 1200px. You can see the live demo of my site here

Mgs Work
  • 67
  • 1
  • 4

1 Answers1

0

For full-width use .container-fluid
For a container user .container

<div class="container"> //container
    <div class="row">
        //your content
    </div>
</div>
<div class="container-fluid"> //full width
    <div class="row">
       //your full-width content
    </div>
</div>
Edvard Ã…kerberg
  • 2,181
  • 1
  • 26
  • 47