I have a div element with fixed height that is styled using the following CSS properties:
.div {
color: white;
font-family: Bahnschrift;
text-align: justify;
vertical-align: text-top;
}
Within this div, the paragraphs are vertically aligned at the top. I am trying to align only the last paragraph (with class="lastpar") at the bottom of the div by applying the following CSS:
.lastpar {
position: relative;
vertical-align: text-bottom;
}
Unfortunately, this solution does not achieve the desired result. Can you provide guidance on how to successfully align the last paragraph at the bottom of the div? Thank you!