Re: [xsl] XSL/HTML styling and CSS style sheets

Subject: Re: [xsl] XSL/HTML styling and CSS style sheets
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 4 Dec 2003 15:42:29 GMT
> I was kinda hoping that I
> could just embed my CSS the same way I used to in the html page:

XSLT does not know _nything about html/css etc it just generates
the result document, and the browser, once it renders the document,
doesn't need to know that it was generated by xslt.

So you can have any html in an xslt generated doc that you have in a
hand written one, including a link to CSS.

  <link rel="stylesheet" type="text/css" href="/styles.css">

  But this doesn?t work.

You don't say wat exactly doesn't work but if you make a link like that
it should work, of course the stylesheet is xml so you need to use xml
syntax for an empty element in the stylesheet and so that's


<link rel="stylesheet" type="text/css" href="/styles.css"/>
                                                         ^
in the html output the / will not be there.


David


-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread