Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Bootstrap Grid Demo</title>
</head>
<body>
  <h1>A grid always has 12 columns</g1>
  <h2>Full width means 12 columns</h2>
  
  <div class="row show-grid">
    <div class="col-xs-12">.col-xs-12</div>
  </div>
  <h2>Half and half: 6 columns each</h2>
  
  <div class="row show-grid">
    <div class="col-xs-6">.col-xs-6</div>
    <div class="col-xs-6">.col-xs-6</div>
  </div>
  
  
  <h2>Crazy mixed-up fish</h2>
  
  <div class="row show-grid">
    <div class="col-xs-3">
      .col-xs-3
    </div>
    <div class="col-xs-3 col-xs-offset-2">
      .col-xs-3 .col-xs-offset-2
    </div>
     <div class="col-xs-4">
      .col-xs-4
    </div>
  </div>
   
</body>
</html>
Output 300px

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

Dismiss x
public
Bin info
SteveBarnettpro
0viewers