0 Bootstrap - Grid & Responsive Image
This demo is an extraction from http://getbootstrap.com/css/. created by @juanmendezinfo
by lovromar
HTML
<link rel="stylesheet" href="http://getbootstrap.com/assets/css/docs.css">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0-rc1/css/bootstrap.min.css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0-rc1/js/bootstrap.min.js"></script>
<a href="http://jsfiddle.net/juanmendez/jSURG/show/" target="_blank">check it in full view</a>
<!-- Centering with container
Easily center a page's contents by wrapping its contents in a .container. Containers set max-width at various media query breakpoints to match our grid system. -->
<div class="container">
<!--Don't want your columns to simply stack in smaller devices? Use the small device grid system by adding .col-* classes to the existing .col-lg-* ones. See the example below for a better idea of how it all works.-->
<div class="row show-grid">
<div class="col-7 col-lg-4">1</div>
<div class="col-5 col-lg-8">1</div>
</div>
<div class="row show-grid">
<div class="col-2 col-lg-8">8</div>
<div class="col-10 col-lg-4"><img src="http://bit.ly/18Z4gUl" class="img-responsive" alt="Reponsive image"></div>
</div>
</div>