JSFiddle - React, Tailwind, and code Playground

http://stackoverflow.com/questions/7321798/div-with-positionabsolutebottom0-doesnt-stick-to-the-bottom-of-the-containe

HTML

<div class="table contentWrapper">
    <div class="tableRow">&#160;</div>
    <div class="footerBar">&#160; fadkjbkj</div>
</div>

CSS

body {
    padding: 0;
    margin: 0;
    position: relative; /* add this */
}
div.table {
    display: table;
}
div.tableRow {
    display: table-row;
}
div.tableCell {
    display: table-cell;
}
div.contentWrapper {
    width: 100%;
    height: 760px;
    position: relative;
    margin: 0 auto;
    padding: 0;
    background-color: salmon; /* added for visibility */
}
div.footerBar {
    width: inherit;
    height: 60px;
    background-image: url("BarBG.png");
    background-repeat: repeat-x;
    position: absolute;
    bottom: 0;
    background-color: skyblue; /* added for visibility */
}