Cactus Jack
New Member
I'm writing an XSLT template and would like to know how I can set the background colour of the cells in the word document that this XSLT creates.Below is a section from the template where you can set the colour using w:color="auto". Icant find anything on google or here on stack overflow.What would be really useful is a reference site that lists all these tags, if anyone has a link I'd be really gratefulThanks in advance\[code\]<w:tc> <w:tcPr> <w:tcW w:w="2600" w:type="dxa"/> <w:tcBorders> <w:top w:val="single" w:sz="12" wx:bdrwidth="30" w:space="0" w:color="auto"/> <w:left w:val="single" w:sz="2" wx:bdrwidth="5" w:space="0" w:color="auto"/> <w:bottom w:val="single" w:sz="12" wx:bdrwidth="30" w:space="0" w:color="auto"/> <w:right w:val="single" w:sz="12" wx:bdrwidth="30" w:space="0" w:color="auto"/> </w:tcBorders> <w:vAlign w:val="center"/> </w:tcPr> <w> <wPr> <w:jc w:val="center"/> <w:rPr> <w:sz w:val="14"/> <w:sz-cs w:val="14"/> </w:rPr> </wPr> <w:r> <w:rPr> <w:sz w:val="14"/> <w:sz-cs w:val="14"/> </w:rPr> <w:t>Comments</w:t> </w:r></w></w:tc>\[/code\]