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: CSS


Hi Alia,

> How can I use XSLT to add CSS stylesheet to XML documents for view
> in a browser?

It's probably easiest just to link the CSS stylesheet to the XML
document directly using an xml-stylesheet processing instruction in
the XML document:

<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="style.css"?>
<doc>
  ...
</doc>

You could use XSLT to add the processing instruction if you wanted,
with an xsl:processing-instruction instruction, but I don't see any
real reason you'd want to do that.

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]