Bonjour,

J'ai une petite question

Voilà un bout de code ou les points de suspension ne marchent pas :
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
 
<fo:block>
	<fo:table table-layout="fixed">
		<fo:table-column column-width="proportional-column-width(20)"/>
		<fo:table-column column-width="proportional-column-width(70)"/>
		<fo:table-column column-width="proportional-column-width(10)"/>
		<fo:table-body>
			<fo:table-row>
				<fo:table-cell border="solid">
					<fo:block>FIGURE 1</fo:block>
				</fo:table-cell>
				<fo:table-cell border="solid">
					<fo:block text-align="start">FULL DIMENSION
						<fo:leader leader-pattern="dots" leader-alignment="reference-area"/>
					</fo:block>
				</fo:table-cell>
				<fo:table-cell border="solid">
					<fo:block text-align="right">10</fo:block>
				</fo:table-cell>
			</fo:table-row>
		</fo:table-body>
	</fo:table>
</fo:block>
Et voilà un bout de code ou les points de suspension fonctionnent :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
 
<fo:block start-indent="10pt"
	text-align-last="justify">Modeling Applications
	<fo:leader leader-pattern="dots" leader-alignment="reference-area">
	</fo:leader>
	1000
</fo:block>
Quelqu'un peut il m'expliquer pourquoi dans un tableau ça ne fonctionne pas ?

Merci d'avance