Table cell problem

Forgive a probable newbie mistake. My code looks like this:
  
    <fo:table-row space-after=".5in" wrap-option="wrap">
      <fo:table-cell>
          <fo:block font-weight="bold">Option Name</fo:block>
       </fo:table-cell>
      <fo:table-cell>
         <fo:block font-weight="bold">Word</fo:block>
       </fo:table-cell>
        <fo:table-cell>
        <fo:block font-weight="bold">Bit</fo:block>
         </fo:table-cell>
        <fo:table-cell>
      <fo:block font-weight="bold">Selected Value</fo:block>
      </fo:table-cell>
     <fo:table-cell>
           <fo:block font-weight="bold">Description</fo:block>
    </fo:table-cell>
     </fo:table-row>
    </fo:table-header>
  <fo:table-body>
   <fo:table-row>
      <fo:table-cell>
            <fo:block font-weight="bold" color="blue" border="solid line blue">
             <xsl:apply-templates select="row/option-name"/>
              </fo:block>
       </fo:table-cell>
       <fo:table-cell>
                <fo:block font-weight="bold" color="brown">
                             <xsl:apply-templates select="row/word"/>
                 </fo:block>
        </fo:table-cell>
  [snip]
  
  Each of the templates contains nothing but <xsl:value-of select="."/>
  
  My output looks like this:
  
  OptionName                Word         Bit            SelectedValue Description
  Option Name 1                   1          1            xxx                  xxxx      
  Option Name 2                   1          1            xxx                  xxxx    
  
  etc.  The problem is that each column appears to be a single cell;  IOW, each row isn't (apparently) composed of 5 cells. I discovered the  problem when the final cell contained a long string and it didn't push  the subsequent rows down when it wrapped. It's as though text is being  appended to the single cell that comprises each column (I tried putting  a border around each cell and got one border around each column.)
  
  What do I need to do differently so that each row is comprised of 5 cells?
  
  Thanks,
  
  Ken
  
  
       
---------------------------------
Get the Yahoo! toolbar and be alerted to new email wherever you're surfing. 
--0-1673119234-1184767505=:91754
Content-Type: text/html; charset=iso-8859-1
Content-Transfer-Encoding: 8bit

Forgive a probable newbie mistake. My code looks like this:<br>  <br>  &nbsp; &lt;fo:table-row space-after=".5in" wrap-option="wrap"&gt;<br>  &nbsp;&nbsp;&nbsp; &lt;fo:table-cell&gt;<br>  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;fo:block font-weight="bold"&gt;Option Name&lt;/fo:block&gt;<br>  &nbsp;&nbsp;&nbsp;&nbsp; &lt;/fo:table-cell&gt;<br>  &nbsp;&nbsp;&nbsp; &lt;fo:table-cell&gt;<br>  &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;fo:block font-weight="bold"&gt;Word&lt;/fo:block&gt;<br>  &nbsp;&nbsp;&nbsp;&nbsp; &lt;/fo:table-cell&gt;<br>  &nbsp; &nbsp;&nbsp;&nbsp; &lt;fo:table-cell&gt;<br>  &nbsp; &nbsp;&nbsp;&nbsp; &lt;fo:block font-weight="bold"&gt;Bit&lt;/fo:block&gt;<br>  &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;/fo:table-cell&gt;<br>  &nbsp; &nbsp;&nbsp;&nbsp; &lt;fo:table-cell&gt;<br>  &nbsp;&nbsp;&nbsp; &lt;fo:block font-weight="bold"&gt;Selected Value&lt;/fo:block&gt;<br>  &nbsp;&nbsp;&nbsp; &lt;/fo:table-cell&gt;<br>  &nbsp;&nbsp; &lt;fo:table-cell&gt;<br> 
 &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;fo:block font-weight="bold"&gt;Description&lt;/fo:block&gt;<br>  &nbsp; &lt;/fo:table-cell&gt;<br>  &nbsp;&nbsp; &lt;/fo:table-row&gt;<br>  &nbsp; &lt;/fo:table-header&gt;<br>  &lt;fo:table-body&gt;<br>  &nbsp;&lt;fo:table-row&gt;<br>  &nbsp;&nbsp;&nbsp; &lt;fo:table-cell&gt;<br>  &nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;fo:block font-weight="bold" color="blue" border="solid line blue"&gt;<br>  &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;xsl:apply-templates select="row/option-name"/&gt;<br>  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;/fo:block&gt;<br>  &nbsp;&nbsp;&nbsp;&nbsp; &lt;/fo:table-cell&gt;<br>  &nbsp;&nbsp;&nbsp;&nbsp; &lt;fo:table-cell&gt;<br>  &nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;fo:block font-weight="bold" color="brown"&gt;<br>  &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
 &nbsp;&nbsp;&nbsp;  &lt;xsl:apply-templates select="row/word"/&gt;<br>  &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;/fo:block&gt;<br>  &nbsp; &nbsp;&nbsp;&nbsp; &lt;/fo:table-cell&gt;<br>  [snip]<br>  <br>  Each of the templates contains nothing but &lt;xsl:value-of select="."/&gt;<br>  <br>  My output looks like this:<br>  <br>  OptionName&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  Word&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  Bit&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  SelectedValue Description<br>  Option Name 1&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;  &nbsp;&nbsp; &nbsp;&nbsp; 1 &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 1 &nbsp;  &nbsp; &nbsp; &nbsp; &nbsp; xxx &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &nbsp; &nbsp; &nbsp; xxxx &nbsp; &nbsp;&nbsp; <br>  Option Name 2 &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;  &nbsp;&nbsp; &nbsp;&nbsp; 1 &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 1
 &nbsp;  &nbsp; &nbsp; &nbsp; &nbsp; xxx &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &nbsp; &nbsp; &nbsp; xxxx &nbsp;&nbsp; <br>  <br>  etc.&nbsp; The problem is that each column appears to be a single cell;  IOW, each row isn't (apparently) composed of 5 cells. I discovered the  problem when the final cell contained a long string and it didn't push  the subsequent rows down when it wrapped. It's as though text is being  appended to the single cell that comprises each column (I tried putting  a border around each cell and got one border around each column.)<br>  <br>  What do I need to do differently so that each row is comprised of 5 cells?<br>  <br>  Thanks,<br>  <br>  Ken<br>  <br>  <p>&#32;
      <hr size=1>Get the Yahoo! toolbar and <a href="http://us.rd.yahoo.com/evt=48225/*http://new.toolbar.yahoo.com/toolbar/features/mail/index.php">be alerted to new email </a>wherever you're surfing. 
--0-1673119234-1184767505=:91754--

Received on Wednesday, 18 July 2007 19:12:14 UTC