我想在第二个单元格中将文本对齐到底部.第一个单元格延伸到2行,因为宽度不足而且没有问题但是第二个单元格中的文本只有一行并显示在单元格的顶部.我怎样才能将它对齐到底部?
我在行,单元格和块级别上尝试了vertical-align ="bottom"text-align ="bottom"text-align ="end"..它们中的任何一个都有效吗?!?
<fo:table font="normal 10 pt Arial, sans-serif" width="100%">
<fo:table-column column-width="40mm"/>
<fo:table-column column-width="130mm"/>
<fo:table-body>
<fo:table-row>
<fo:table-cell padding-before="3pt" padding-after="3pt">
<fo:block font-weight="bold">Pricing Rate in % p.a. / "Pensionssatz in % p.a.":</fo:block>
</fo:table-cell>
<fo:table-cell padding-before="3pt" padding-after="3pt">
<fo:block>
**This text I want to be aligned to bottom (in the second line)**
</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
Run Code Online (Sandbox Code Playgroud)