Can someone help me figure out how to position the last paragraph element at the bottom of the box in this jsFiddle example? (You may need to resize the window area)
Here is the CSS code snippet:
@media (min-width: 768px) {
/* top row */
.col .well{
margin-bottom: -99999px;
padding-bottom: 99999px;
}
.col-well {
display:inline-block; height:100%
}
.col-well p {
vertical-align:bottom
}
/* bottom row */
.col-base{
margin-top: -15px; /* cut off top portion of bottom wells */
}
}
@media (max-width: 767px) {
.row.base{
display:none;
}
}
.col-wrap{
overflow: hidden;
}