Lösung: Condition
<xsl:template match="cd">
<tr>
<xsl:attribute name="style">
background:
<xsl:choose>
<xsl:when
test="preis">orange</xsl:when>
<xsl:otherwise>lightgrey</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
<td>
<xsl:value-of select="titel"/>
</td>
</tr>
</xsl:template>