Bonjour à tous,

Dans une cellule d'un tableau, j'aimerais mettre 4 images côte à côte. Cependant, lorsque j'utilise le code :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
 
<fo:table-cell>
	<fo:block>		
		<fo:external-graphic src="{$pixel-gif}" width="50px" height="10px"/>
		<fo:external-graphic src="{$volatilityRef-gif}"/>					
		<fo:external-graphic src="{$pixel-gif}" width="50px" height="10px"/>					
		<fo:external-graphic src="{$volatility-gif}"/>					
	</fo:block>
 
 
</fo:table-cell>
Il y a toujours un léger décallage entre les images...j'ai tout essayé avec les margin, space-end,...rien n'y fait, ce décallage apparait tout le temps !

Voyez-vous comment faire pour ne plus qu'il soit là ?

Merci d'avance pour votre aide.