Subject: Re: How to use a variable for bgcolor?
From: Jeni Tennison <jeni@xxxxxxxxxxxxxxxx>
Date: Wed, 26 Jun 2002 20:04:34 +0100
|
Hi Bill,
> How can I use an XSLT variable to be used as background color in
> an html table? The '#' in the color definition is giving me fits.
> For example, if I define a variable like so:
>
> <xsl:variable name="colr" select="#FFCCCC"/>
You've forgotten the quotes that you need to set $colr to *the string*
'#FFCCCC'. Try:
<xsl:variable name="colr" select="'#FFCCCC'" />
The rest (the attribute value template) is just fine.
Cheers,
Jeni
---
Jeni Tennison
http://www.jenitennison.com/
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|