XSL Control Structures
Styles can be conditionally applied with if:<xsl:if match=".[ARTIST='Bob Dylan']"> ... some output … </xsl:if>
Or with conditional choose:<xsl:choose><xsl:when match=".[ARTIST='Bob Dylan']">... some code ... </xsl:when> <xsl:otherwise> ... some code .... </xsl:otherwise> </xsl:choose>