Bootstrap - Vertically Align Columns

by klode

HTML

<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css">
<div class="row">
    <div class="col-md-2 pull-bottom"
         style="height:100px;background:blue">
    </div>
    <div class="col-md-8 pull-bottom"
         style="height:50px;background:yellow">
    </div>
</div>













<!-- Post Info -->
<div style='position:fixed;bottom:0;left:0;    
            background:lightgray;width:100%;'>
    About this SO Question: <a href='http://stackoverflow.com/q/23507322/1366033'>How Do You Anchor Multiple Child Elements to the Bottom of a Parent Element in a Responsive Design?</a><br/>
    Fork This Skeleton Here <a href='http://jsfiddle.net/KyleMit/kcpma/'>Bootrsap 3.0 Skeleton</a><br/>
<div>

CSS

.pull-bottom {
    display: inline-block;
    vertical-align: bottom;
    float: none;
}