Vertical Alignment of text in a table cell
Just in case someone found this issue:
If you have an image and text above you don't want to align after but before:
<fo:table-cell display-align="before">
<!-- Your image & text separated in blocks -->
<fo:table-cell>
Use display-align="after"
on the table cell:
<fo:table-cell padding-before="3pt" padding-after="3pt" display-align="after">
<fo:block>
**This text I want to be aligned to bottom (in the second line)**
</fo:block>
</fo:table-cell>