Hi there I\'m trying to position text to the bottom of the vertical-align:text-bottom;
or vertical-align:bottom;
<
Flexbox was created for exactly these kind of problems:
#container {
height: 150px;/*Only for the demo.*/
background-color:green;/*Only for the demo.*/
display: flex;
justify-content: center;
align-items: flex-end;
}
Text align to center bottom.
If you don't want to mess with table displays, then you can create a text-align
it to the center:
#container {
height: 150px;/*Only for the demo.*/
background-color:green;/*Only for the demo.*/
position: relative;
}
#text {
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
}