Tutoriel XSL-FOlogin
Tutoriel XSL-FO
auteur:php.cn  temps de mise à jour:2022-04-21 16:29:33

XSL-FO XSLT



XSL-FO et XSLT peuvent s'entraider.


Vous vous souvenez de cette instance ?

<fo:bloquer font-size="14pt" font-family="verdana" color="red"
espace-avant="5mm" espace-après="5mm">
PHP.CN
</ fo:block>

<fo:block texte-retrait="5mm" font-family="verdana" font-size="12pt">
Chez W3CSchool, vous trouverez tous les tutoriels de création Web dont vous
avez besoin, du HTML et XHTML de base au XML, XSL, multimédia et WAP avancés. .
</fo:block>

Résultat :

PHP.CN

PHP.CN

At php.cn you will find all the Web-building tutorials you need, from basic HTML and XHTML to advanced XML, XSL, Multimedia and WAP.

Sur php.cn vous trouverez tous les outils de création Web tutoriels dont vous avez besoin, du HTML et XHTML de base aux zones de blocs XML, XSL, Multimédia et WAP avancées.


Aide de XSLT

Supprimez les informations XSL-FO du document :

<header>PHP.CN</header>

<paragraphe>Sur php.cn, vous trouverez tous les didacticiels de création Web dont vous
avez besoin, du HTML et XHTML de base au XML, XSL, multimédia et WAP avancés.
</paragraph> 🎜>
Ajouter une transformation XSLT :

<xsl:template match="header">
<fo:block font-size="14pt" font-family="verdana" color="red"
espace-avant="5mm" espace-après="5mm">
<xsl:apply-templates/> ;
</fo:block>
</xsl:template>

<xsl:template match="paragraph">
<fo:block texte-retrait="5mm" font-family="verdana" font-size="12pt">
<xsl:apply-templates/>
</fo:block>
</xsl:template>

produit le même résultat :

PHP.CN

Chez php. cn vous vous trouverez tous les outils de création Web tutoriels dont vous avez besoin, du HTML et XHTML de base aux XML, XSL, multimédia et WAP avancés.

PHP.CN

At php.cn you will find all the Web-building tutorials you need, from basic HTML and XHTML to advanced XML, XSL, Multimedia and WAP.