"TEST: Fluid Layout with Twitter Bootstrap 3.0"
Bootstrap 3.1.0 Snippet by mrmccormack

<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <!--http://www.tutorialrepublic.com/twitter-bootstrap-tutorial/bootstrap-fluid-layout.php --> <nav id="myNavbar" class="navbar navbar-default navbar-inverse navbar-fixed-top" role="navigation"> <!-- Brand and toggle get grouped for better mobile display --> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbarCollapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="#">Tutorial Republic</a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="navbarCollapse"> <ul class="nav navbar-nav"> <li class="active"><a href="http://www.tutorialrepublic.com" target="_blank">Home</a></li> <li><a href="http://www.tutorialrepublic.com/about-us.php" target="_blank">About</a></li> <li><a href="http://www.tutorialrepublic.com/contact-us.php" target="_blank">Contact</a></li> </ul> </div> </div> </nav> <div class="container-fluid"> <div class="jumbotron"> <h1>TEST: Fluid Layout with Twitter Bootstrap 3.0</h1> <p>In Twitter Bootstrap 3 there is no such thing like fluid grid system, but you can create fluid layout to utilize the 100% width of the screen with a little trick. </p> <p> <a href="http://getbootstrap.com/css/#grid-intro">See TB 3 Docs</a> </p> </div> <div class="row"> <div class="col-xs-4"> <h2>HTML</h2> <p>HTML is a markup language that is used for creating web pages. The HTML tutorial section will help you understand the basics of HTML, so that you can create your own web pages or website.</p> <p><a href="http://www.tutorialrepublic.com/html-tutorial/" target="_blank" class="btn btn-success">Learn More »</a></p> </div> <div class="col-xs-4"> <h2>CSS</h2> <p>CSS is used for describing the presentation of web pages. The CSS tutorial section will help you learn the essentials of CSS, so that you can fine control the style and layout of your HTML document.</p> <p><a href="http://www.tutorialrepublic.com/css-tutorial/" target="_blank" class="btn btn-success">Learn More »</a></p> </div> <div class="col-xs-4"> <h2>Bootstrap</h2> <p>Twitter Bootstrap is a powerful front-end framework for faster and easier web development. The Twitter Bootstrap tutorial section will help you learn the techniques of Bootstrap so that you can create web your own website.</p> <p><a href="http://www.tutorialrepublic.com/twitter-bootstrap-tutorial/" target="_blank" class="btn btn-success">Learn More »</a></p> </div> </div> <hr> <div class="row"> <div class="col-xs-12"> <footer> <p>© Copyright 2013 Tutorial Republic</p> </footer> </div> </div> </div>
.container-fluid .row{ margin: 0; }

Related: See More


Questions / Comments: