TD , DIV. .
DIV CSS. , .
If you use absolute positioning, you can vertically align the text by vertically aligning the container in which the text is located. However, absolutely positioned elements do not occupy “space” inside their container, which means that you need to set margin or padding to compensate for this space in the container.
For example:
HTML:
<div id="container">
<span id="text">Some text, Some text, Some text, </span>
</div>
CSS
#id {
position:relative;
margin-bottom: 100px;
}
#text {
position:absolute;
bottom:0;
height: 100px;
overflow:hidden;
}
source
share