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
Asked
Active
Viewed 519 times
1 Answers
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