How to make bootstrap 3 fluid layout without horizontal scrollbar

html, twitter-bootstrap, twitter-bootstrap-3

Solution

This was introduced in v3.1.0: http://getbootstrap.com/css/#grid-example-fluid

Commit #62736046 added ".container-fluid variation for full-width containers and layouts".

Problem

here is sample link: http://bootply.com/76369 this is html i use. ``` <div class="row"> <div class="col-md-6">.col-md-6</div> <div class="col-md-6">.col-md-6</div> </div> ``` bootstrap 3 has no container-fluid and row-fluid. i cannot wrap it with .container class because it will become fixed layout. how to make it fluid (full page width) layout? (without horizontal scrollbar) with these markup. when you view in the result the x-scroll bar is visible so you can scroll to left and right that it should not. edited: 2015-12-09 Already got answer and Bootstrap already released the fix since 3.1.0

Original source

Related problems