Skip to content

Instantly share code, notes, and snippets.

@tdshipley
Created April 22, 2016 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tdshipley/205ee37fbfcd1b69d7db2578cd1f8ff9 to your computer and use it in GitHub Desktop.
Save tdshipley/205ee37fbfcd1b69d7db2578cd1f8ff9 to your computer and use it in GitHub Desktop.
An example of how to create a panel in boostrap sized within a grid.
<!-- http://getbootstrap.com/components/#panels -->
<div class="row">
<div class="col-md-2">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Panel title</h3>
</div>
<div class="panel-body">
Panel content
</div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment