<xsl:if test=".." > . . . </xsl:if>
<xsl:template match="cdlist"> <xsl:for-each select="cd"> <xsl:if test="filed[. = 'C05 World']"> <tr> <td style="color:blue;font-weight:bold"><xsl:value-of select="artist"/></td> <td style="color:red;font-weight:bold"><xsl:value-of select="title"/></td> <td style="color:darkgray;font-weight:bold"><xsl:value-of select="filed"/> </td> </tr> </xsl:if> </xsl:for-each> </xsl:template>