I have a div containing several paragraphs of text that I would like to have bottom aligned on my page. I'm using this CSS:
The height, background-color and text-align are all working as expected, however vertical-align is not. (Setting the value to 'middle' doesn't work either).
Ideas on what I'm doing wrong here?
html, body, div.dvDocument {
height: 100%;
background-color: #ff0000;
vertical-align: baseline;
text-align: right;
}
The height, background-color and text-align are all working as expected, however vertical-align is not. (Setting the value to 'middle' doesn't work either).
Ideas on what I'm doing wrong here?