下面的代码description_line_1
应位于product_description
的同一单元格中。所以,在显示product_description
后,
description_line_1
将显示在下一行。但唯一的问题是description_line_1
行本身是2行而不是单行。
<tr style="font-size: 9px; ">
<td style="text-align: right;"><xsl:value-of select="line_number" /></td>
<td style=" text-align: left;" ><xsl:value-of select="product_description" />
<table>
<tbody>
<tr>
<td><xsl:value-of select="description_line_1" /></td>
</tr>
</tbody>
</table>
</td>
<td style=" text-align: right;"><xsl:value-of select="product_quantity" /></td>
</tr>
例如,
预期结果:
Product_Description
Descrition...
description line 1
现在实际结果:(显示此行)
Product_Description
Descrition...
description line
1
答案 0 :(得分:0)
谢谢大家。我在这里找到了这个问题。我必须给内表标签赋予宽度
<tr style="font-size: 9px; ">
<td style="text-align: right;"><xsl:value-of select="line_number" /></td>
<td style=" text-align: left;" ><xsl:value-of select="product_description" />
<table style="width: 100%">
<tbody>
<tr>
<td><xsl:value-of select="description_line_1" /></td>
</tr>
</tbody>
</table>
</td>
<td style=" text-align: right;"><xsl:value-of select="product_quantity" /></td>
</tr>