bonjour,
j ai un tableau comme ceci :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<xsl:template name="DataDoc">
<fo:table>
   <fo:table-column column-width="proportional-column-width(1)"/>
   <fo:table-column column-width="proportional-column-width(1)"/>
   <fo:table-body>
    <fo:table-row>
     <fo:table-cell text-align="right">
     <fo:block space-before="1cm">date :</fo:block>
     </fo:table-cell>
	   <fo:table-cell border-bottom="0.5pt dotted #333333"><fo:block>*</fo:block></fo:table-cell>
    </fo:table-row>
    <fo:table-row>
     <fo:table-cell text-align="right">
      <fo:block space-before="1cm">signature: </fo:block>
     </fo:table-cell>
     <fo:table-cell border-bottom="0.5pt dotted #333333"><fo:block>*</fo:block></fo:table-cell>
    </fo:table-row>
   </fo:table-body>
 </fo:table>
</xsl:template>
</xsl:stylesheet>
le souci c'est que je devrais aligner
date et signature de la manière suivante :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
   date..............................
   signature........................
le souci actuel est ceci :
date n est pas aligner à signature


j aimerai que signature soit aligné à date en partant de la gauche
pourriez vous m aider
Je suis novice en xsl:fo