You can do this in two ways: either using CSS Positioning Technique, where you need to set the parent element position: relative;and the child element -position: absolute;
Demo (wrapping text with an elementspan)
.box > span {
position: absolute;
bottom: 0;
left: 0;
}
Or using display: table-cell;withvertical-align: bottom;
( )
.box {
height: 187px;
width: 187px;
margin-right: 5.5px;
margin-left: 5.5px;
margin-bottom: 5.5px;
margin-top: 5.5px;
color: white;
display: table-cell;
vertical-align: bottom;
}
, CSS,
margin-right: 5.5px;
margin-left: 5.5px;
margin-bottom: 5.5px;
margin-top: 5.5px;
margin: 5.5px 5.5px 5.5px 5.5px;