Skip to content

Instantly share code, notes, and snippets.

@hereswhatidid
Last active September 19, 2015 05:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save hereswhatidid/9029915 to your computer and use it in GitHub Desktop.
Save hereswhatidid/9029915 to your computer and use it in GitHub Desktop.
Localize Bootstrap 3+ styles to a container div.
.bootstrap-wrapper {
@import (less) url( '../vendor/bootstrap/bootstrap.css' );
}
<div class="bootstrap-wrapper">
<div class="container">
<div class="row">
<div class="col-md-4">
<h3>This is a column!</h3>
</div>
<div class="col-md-4">
<h3>This is a column!</h3>
</div>
<div class="col-md-4">
<h3>This is a column!</h3>
</div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment