Tableau XSL-FO
Résultats de traduction:
XSL-FO est utilisé pour formater les données XML pour la sortie.
Tableau XSL-FOsyntaxe
XSL-FO utilise l'élément <fo:table-and-caption>
Tableau XSL-FOexemple
<fo:table-and-caption> <fo:table> <fo:table-column column-width="25mm"/> <fo:table-column column-width="25mm"/> <fo:table-header> <fo:table-row> <fo:table-cell> <fo:block font-weight="bold">Car</fo:block> </fo:table-cell> <fo:table-cell> <fo:block font-weight="bold">Price</fo:block> </fo:table-cell> </fo:table-row> </fo:table-header> <fo:table-body> <fo:table-row> <fo:table-cell> <fo:block>Volvo</fo:block> </fo:table-cell> <fo:table-cell> <fo:block>000</fo:block> </fo:table-cell> </fo:table-row> <fo:table-row> <fo:table-cell> <fo:block>SAAB</fo:block> </fo:table-cell> <fo:table-cell> <fo:block>000</fo:block> </fo:table-cell> </fo:table-row> </fo:table-body> </fo:table> </fo:table-and-caption>
Recommandations populaires
- Tableaux de données sveltes pour une comparaison complète des fonctionnalités
- Points clés à connaître lors de la création de tables dans MySQL
- Tables de décision dans TypeScript : un modèle sous-estimé pour un code plus propre
- Ajout d'un identifiant de série aux tables MySQL en fonction de la date de création : un guide étape par étape