<?xml version="1.0" encoding="gb2312"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/xsl/transform" >
<xsl:template match="/root">
<table style="border: 1px solid black; width: 100px;">
<xsl:apply-templates/>
</table>
</xsl:template>
<xsl:template match="item">
<tr>
<xsl:if test="position() mod 2=1">
<xsl:attribute name="style">background-color:yellow;</xsl:attribute>
</xsl:if>
<td style="text-align: center; width: 100%;"><xsl:value-of select="text()"/></td>
</tr>
</xsl:template>
</xsl:stylesheet>