Code:
<style>
.rowstyle1 { background-color: #D6F2EE;min-height: 50px;}
.rowstyle2 { background-color: #F5F5F5;min-height: 50px; }
</style>
I could simply do:
Code:
<td class="rowstyle1">TEST</td>
But how do I put that value in a variable?
This doesn't work:
Code:
<xsl:variable name="rowstyle" select="rowstyle1" />
<td class="$rowstyle">TEST</td>