Je voudrais aligner le texte en bas dans la deuxième cellule. La première cellule s'étend sur 2 lignes, à cause d'une largeur insuffisante et c'est correct Mais le texte dans la deuxième cellule ne comporte qu'une ligne. et s'affiche en haut de la cellule. Comment puis-je l'aligner en bas?
J'ai essayé vertical-align = "bottom" text-align = "bottom" text-align = "end" sur Niveaux de cellules, de rangées et de blocs. Certains d'entre eux ont fonctionné?!?
<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>
Utilisez display-align="after"
sur la cellule du tableau:
<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>
Juste au cas où quelqu'un trouverait ce problème:
Si vous avez une image et du texte ci-dessus, vous ne souhaitez pas aligner après mais avant:
<fo:table-cell display-align="before">
<!-- Your image & text separated in blocks -->
<fo:table-cell>