[XSLT] comment insérer un espace
Bonjour mes amis j'ai un probléme et je voudrais le résoudre voilà le probléme:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| <html>
<head>
<title></title>
</head>
<body>
<table border="1">
<tr bgcolor="yellow">
<th>Nom et Prenom</th>
<th>Date naissance</th>
<th>E-mail</th>
</tr>
<xsl:for-each select="personne">
<tr>
<td><xsl:value-of select="prenom"/> <xsl:value-of select="nom"/></td>
<td><xsl:value-of select="datnaiss/jour"/> / <xsl:value-of select="datnaiss/mois"/> / <xsl:value-of select="datnaiss/annee"/></td>
<td><xsl:value-of select="email"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html> |
Je voudrais un espace entre le nom et le Prenom mais ca marche pas avec " " donc si vous avez déja rencontré ce probléme répondez moi et merci en avance.