Text bottom of div

Text at bottom of div :

Wrap the text in a span or similar and use the following CSS :

.your-div {

    position: relative;

}

.your-div span {

    position: absolute;

    bottom: 0;

}


Comments