Bootstrap 3 Template

This is a simple Twitter Bootstrap 3 template. You can fork it to get a ready to use Bootstrap 3 fiddle.

by Павел KLON

HTML

<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<div class="main">
<div class="container">
<div class="row">
<div class="table">
<div class="col-sm-3 table-cell">
  <p>test</p>
</div>
<div class="col-sm-3 table-cell">
  <p>test<br />test</p>
</div>
<div class="col-sm-3 table-cell">
  <p>test<br />test<br />test</p>
</div>
<div class="col-sm-3 table-cell">
  <p>test<br />test</p>
</div>
</div>
</div>
</div>
</div>

CSS

.main {
    background-color: #231f20;
    color:#fff;
        min-height: 100px;
    height:1px;
}
.container {
  height: 100%;
    background-color: red;
}
.row {
   height: 100%;
}
.table {
    display:table;
    table-layout: fixed;
    width:100%;
    height: 100%;
    background-color: blue;
    margin-bottom:0;
}
.table-cell {
  display:table-cell;
  vertical-align:middle;
  text-align: center;
  float: none !important;
  background-color: green;
  height: 100%;
}
p {
  margin: 0;
}