Bonjour,

Dans une liste j'affiche un tableau.
Le contenu des cellules du tableau doivent être alignés à gauche
En résultat j'ai un décalage dans le texte et pas dans les border ?
Si j’enlève les éléments de la liste, le texte des cellules du tableau est bien cadré à gauche.

Extrait du fo généré :
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
22
23
24
25
26
27
28
 
<fo:block>
<fo:list-block space-before="3mm">
<fo:list-item>
<fo:list-item-label end-indent="label-end()"><fo:block space-before="0cm"> </fo:block></fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>
<fo:table border-width="thin" border-color="black" 
	table-layout="fixed" block-progression-dimension="auto" 
	inline-progression-dimension="auto" border-start-style="solid" 
	border-end-style="solid" border-before-style="solid" 
	border-after-style="solid" text-align="start">
	<fo:table-column column-number="1" column-width="proportional-column-width(284)"/>
	<fo:table-column column-number="2" column-width="proportional-column-width(283)"/>
	<fo:table-header border-start-style="solid" border-end-style="solid" border-width="thin" border-before-style="solid" border-after-style="solid">
		<fo:table-row>
			<fo:table-cell border-start-style="solid" border-end-style="solid" 
				border-width="thin" border-before-style="solid" 
				border-after-style="solid" text-align="start" 
				vertical-align="top" border-color="black">
				<fo:block margin-left="0pt" margin-right="0pt" padding="2pt">COLONNE 1</fo:block>
			</fo:table-cell>
			<fo:table-cell border-start-style="solid" border-end-style="solid" border-width="thin" border-before-style="solid" border-after-style="solid" text-align="start" vertical-align="top" border-color="black">
				<fo:block margin-left="0pt" margin-right="0pt" padding="2pt">COLONNE 2</fo:block>
			</fo:table-cell>
		</fo:table-row>
	</fo:table-header>
............
Si je pouvais avoir une explication

Merci d'avance