“¿Es posible agregar XSL y CSS en el mismo archivo XML?” Código de respuesta

Cómo vincular XSL con XML

<?xml-stylesheet type="text/xsl" href="yourxsl.xsl"?>
Alive Ant

¿Es posible agregar XSL y CSS en el mismo archivo XML?

/*Add a link to your CSS file:*/

<xsl:template match="/">
    <html>
        <head>
            <link rel="stylesheet" href="path/to/your/css/file.css">
        </head>
        <body>
            <xsl:apply-templates select="Book"/>
        </body>
    </html> 
</xsl:template>
MitchAloha

Respuestas similares a “¿Es posible agregar XSL y CSS en el mismo archivo XML?”

Preguntas similares a “¿Es posible agregar XSL y CSS en el mismo archivo XML?”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código