This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: How to use a variable for bgcolor?


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]