loading
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/project"> <xsl:for-each select="subject/option"> <table width="250" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="vote_tit"><xsl:value-of select="title"/></td> <td width="80"><div class="vote_bg"> <div class="vote"> <xsl:attribute name="style"><xsl:text>width:</xsl:text><xsl:value-of select="number(percent)"/><xsl:text>%</xsl:text></xsl:attribute> </div> </div></td> <td width="42"><xsl:value-of select="count"/></td> </tr> </table> </xsl:for-each> </xsl:template> </xsl:stylesheet>