bonjour...
j'ai un probleme avec <fo:table-cell>.
la 2eme ligne prend toujours de la taille de la ligne precedente ?
voici le bout de mon programme :
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
29
30
31
32
33
34
35
36
<fo:table >
  <fo:table-body>
    <fo:table-row>
      <fo:table-cell width="4in" border-style="inset">		
        <fo:block text-align="start">
          <fo:block font-size="19pt">
            essai ligne 1
          </fo:block>
        </fo:block>
      </fo:table-cell>
	  <fo:table-cell width="1.5in" border-style="inset">		
        <fo:block text-align="start">
          <fo:block font-size="19pt">
            L1
          </fo:block>
        </fo:block>
      </fo:table-cell>
          </fo:table-row>
		  <fo:table-row>
      <fo:table-cell  width="2in" border-style="inset">		
        <fo:block text-align="start">
          <fo:block font-size="19pt">
            essai ligne 2
          </fo:block>
        </fo:block>
      </fo:table-cell>
	  <fo:table-cell width="0.55in" border-style="inset">		
        <fo:block text-align="start">
          <fo:block font-size="19pt">
           L 2
          </fo:block>
        </fo:block>
      </fo:table-cell>
          </fo:table-row>
  </fo:table-body>
</fo:table>
comment faire pour rendre ces tailles variables ?
merci