我在 IE 中使用 tablr
<table style="width=74%;table-layout:auto" border="0">
<xsl:for-each select="webpage/param">
<tr>
<xsl:if test="@type !='i'">
<td class="rowYellow">
<xsl:if test="@indent !=''">
<!-- Generate the appropriate number of indentation -->
<xsl:variable name="count" select="@indent"/>
<xsl:for-each select="(//*)[position()<=$count]">
<xsl:text> </xsl:text>
</xsl:for-each>
这段代码在 Mozilla 中运行良好,但在 IE 中,我的专栏分为两行,而不是自动布局。