Bootstrap 3 Clean Fiddle

This is with Bootstrap on a CDN so it's just ready to fiddle.

by sulfureous

HTML

<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0-rc1/css/bootstrap.min.css">
<div class="container">
  <div class="row">one</div>
  <div class="row">two</div>
  <div class="row">three</div>
</div>

CSS

.container {
    box-shadow: 0 0 10px rgba(0,0,0,2);
    padding: 0 15px;
    margin-top: 30px;
}
.row {
    background: green;
    height: 100px;
}