JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css">
<script src="http//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
<div class="container-fluid">
<div class="row-fluid">
<div class="span12 block">
    <div class="row-fluid">
    <div class="span6 menu-column">
	    <div class="menu-item well">
			12.West Caribbean Bowl - $12.00<br>
	       Jasmine rice, black beans, warm salsa, cheddar cheese, sour cream, pickled jalapños and a chicken thigh Served with tortilla ch<br>Additional chicken thigh - $2.0
	   </div>
		  <div class="menu-item well">
		  	13.Rice Bean Thigh Trio - $8.00<br>
	      Two scoops of jasmine rice, a cup of black beans and a chicken thigh. <br>Additional chicken thigh - $2.0
		  </div>	
		  <div class="menu-item well">
		  	14. Greens - $4.75
	      Romaine lettuce, purple cabbage, pickled beets, and fresh cilantro, drizzleith our house vinaigrette.<br>Add chicken, pork, or tofu - $3.00<br> Add prawns, scallops, or fish - $4.00
		  </div>
		</div>
		<!--end of column-->   
		<div class="span6 menu-column">
		  <div class="menu-item well">	
		  	15.Black Beans and Rice - $5.50
	      A bowl full of fluffy jasmine rice smothered in our critically acclaimed vegetarian black beans.
		  </div>  	
		  <div class="menu-item well">
		  	16.Rice Beans and Salad - $8.25<br>
	      Two scoops of jasmine rice, a cup of black beans and Greens              </div>
	    </div><!--end of column-->
        </div><!--.row-fluid-->
</div><!--end of span12 block-->
</div><!--.row-fluid-->
</div><!--.container-fluid-->

CSS

.menu-column  {
  padding-top: 0px;
}
.block  {
  padding-right:0px;
  margin-left: 0px !important;
}
.menu-item  {
  min-height: 100px;
}

/* I've added this media query here to illustrate that you can change any of the CSS after the screen hits a certain width */

@media (max-width: 320px) {
  .well {
    background: #fff;
    padding: 10px;
    min-height: 180px;
    min-width: 180px;
  }
}