Skip to content

Instantly share code, notes, and snippets.

@orenyk
Created November 12, 2015 15:08
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 orenyk/26a71708e3176024ccf6 to your computer and use it in GitHub Desktop.
Save orenyk/26a71708e3176024ccf6 to your computer and use it in GitHub Desktop.
Bootstrap Layout Example w/ 4 half-width blocks
<div class="container">
<div class="row">
<div class="col-md-6">
TOP LEFT CONTENT
</div>
<div class="col-md-6">
TOP RIGHT CONTENT
</div>
</div>
<div class="row">
<div class="col-md-6">
BOT LEFT CONTENT
</div>
<div class="col-md-6">
BOT RIGHT CONTENT
</div>
</div>
</div>
outermost div might be optional (the "container")
documentation at getbootstrap.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment