Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Bootstrap 1 column">
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <!-- Need to include jquery library for bootstrap. -->  
  <script src="https://code.jquery.com/jquery.min.js"></script>
  <!-- Need to also include bootstrap css rules. -->
  <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
  <!-- Need to also include bootstrap JS support. -->
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
  <!-- Open the output in a new blank tab 
      (Click the arrow next to "Show Output" button) 
      and resize the browser window to understand how 
      the Bootstrap responsive grid system works. -->
  <div class="container">
    <!--Row with single column-->
    <div class="row">
      <div class="col-xs-12">
        <div class="demo-content">.col-xs-12</div>
      </div>
    </div>
    <hr>
    
    <!--Row with single column-->
    <div class="row">
      <div class="col-xs-12">
        <div class="demo-content bg-alt">.col-xs-12</div>
      </div>
    </div>
  </div>  
  
</body>
</html>
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
timdrichardspro
0viewers