[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] CSS


Subject: Re: [xsl] CSS
From: Jarkko Moilanen <Jarkko.Moilanen@xxxxxx>
Date: Mon, 4 Aug 2003 14:10:50 +0300 (EEST)

On Mon, 4 Aug 2003, AROSO Jose Antonio wrote:

> Hi...
>
> Is it possible to use cascade style sheets with XSL?

Yes.


<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" indent="yes"/>

<xsl:template match="/">
 <html>
  <head>
   <!-- External CSS -->
   <link rel="stylesheet" type="text/css" href="location-of.css"/>

  <!-- Internal CSS -->
  <style type="text/css">
   p.element-syntax { border: solid thin }code { font-family: monospace }
  </style>
  </head>
  <body>
   <xsl:apply-templates/>
   </body>
  </html>
 </xsl:template>
</xsl:stylesheet>

Cheers,
Jarkko

>
>
> Best Regards
>
> Jose
>
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>
>


****************************************************************
Jarkko Moilanen          "The box said that is needs
Researcher                Windows 95 or better... So I
jm60697@xxxxxx            installed Linux."
www.uta.fi/~jm60697
GSM: +358 50 3766 927
****************************************************************
* ITCM | Information Technology and Crisis Management
* http://www.itcm.org
****************************************************************






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



Current Thread