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 では自動レイアウトを行う代わりに、私のコラムが 2 行になります。