Michael: Unerwünschter Abstand in mehrspaltiger Tabelle

Hallo,

ich erzeuge folgendermassen eine zweispaltige Tabelle:

  
<fo:block-container absolute-position="absolute" left="20" top="210pt">  
<fo:block font-family="serif" text-align="center" color="#000000" font-size="8pt">  
<fo:table width="500pt" margin-top="0.3cm" background-color="#ffffff" table-layout="fixed">  
<fo:table-column column-width="200pt" />  
<fo:table-column column-width="200pt" />  
<fo:table-body background-color="#ffffff" border-width="1pt" padding-start="0pt">  
  <fo:table-row>  
    <fo:table-cell>  
      <fo:block font-family="serif" margin-bottom="10pt" text-align="left" color="#000000" font-size="13pt">  
 Internetportal:  
      </fo:block>  
    </fo:table-cell>  
    <fo:table-cell>  
      <fo:block font-family="serif" margin-bottom="10pt" text-align="left" color="#000000" font-size="13pt">  
 Name des Portals  
      </fo:block>  
    </fo:table-cell>  
  </fo:table-row>  
  <fo:table-row>  
    <fo:table-cell>  
      <fo:block white-space-collapse="false" font-family="serif" margin-bottom="10pt" text-align="left" color="#000000" font-size="13pt">  
 Benutzerkennung:  
 (Anmeldename)  
      </fo:block>  
    </fo:table-cell>  
    <fo:table-cell>  
      <fo:block white-space-collapse="false" font-family="serif" margin-bottom="10pt" text-align="left" color="#000000" font-size="13pt">  
 <xsl:value-of select="benutzername" />  
      </fo:block>  
    </fo:table-cell>  
  </fo:table-row>  
  <fo:table-row>  
    <fo:table-cell>  
      <fo:block font-family="serif" margin-bottom="10pt" text-align="left" color="#000000" font-size="13pt">  
 Vorname:  
      </fo:block>  
    </fo:table-cell>  
    <fo:table-cell>  
      <fo:block font-family="serif" margin-bottom="10pt" text-align="left" color="#000000" font-size="13pt">  
 <xsl:value-of select="vorname" />  
      </fo:block>  
    </fo:table-cell>  
  </fo:table-row>  
  
</fo:table-body>  
</fo:table>  
</fo:block>  
</fo:block-container>  
  

In der ersten Zelle der zweiten Zeile sollen die Wörter Benutzerkennung und Anmeldename untereinander stehen. Das klappt soweit auch!
Leider ist jetzt das Wort "Benutzerkennung" nicht mehr auf der selben Höhe wie der Inhalt der Variable "benutzername".
Es wird scheinbar eine Leerzeile vor dem Wort Benutzerkennung eingefügt.

Bisher habe ich noch keine Lösung für das Problem gefunden, weder in der Suche noch in einer Referenz.

Nach welchen Stichpunkten muss ich suchen, bzw. weiss jemand die Lösung?

Viele Grüße,

Michael

  1. Hallo, ich kann das gerade leider nicht parsen. Daher nur was mir als erstes ins Auge spingt: Wie sieht denn die Anzeige aus, wenn Du testhalber die Zeile mit "(Anmeldename)" inkl. Zeilenumbruch rausnimmst?

    Viele Grüße!

    Biks