Say I have the following CSS and HTML code:
I found this solution bassed on a default bootstrap start template
/* HTML */
HIS This is the header
In Two Rows
This is a description at the bottom too
/* css */
.content_wrapper{
display: table;
width: 100%;
height: 100%; /* For at least Firefox */
min-height: 100%;
}
.content_floating{
display: table-cell;
vertical-align: bottom;
padding-bottom:80px;
}