Bonjour,
je découvre XSL et me heurte à un problème qui parait simple. Je voudrai éditer un document avec un fond de page -Logo et coordonnées de l'entreprise en jpg 794px X 1194px-
En utilisant css et html cela fonctionne (avec background et non background-image mais peu importe) mais je n'y arrive pas avec xsl dont voici le source. De ce que j'ai compris, ce source devrait afficher deux fois l'image, une fois avec <body> et une fois avec le tag <div> Et pourtant rien .
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output encoding="UTF-8" method="html" doctype-public="-//W3C//DTD HTML 4.0 Transitional" doctype-system="http://www.w3.org/TR/REC-html40" indent="yes"/>
<xsl:template match="/">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" encoding="UTF-8"> </meta>
<html>
<head>
<title>Essai CSS</title>
<style type="text/css">
body
{
background: url("/home/moi/FR/FondPage.jpg") no-repeat 0 0 ;
height 1193px ;
width 794px ;
}
div#page
{
background: url("/home/moi/FondPage.jpg") no-repeat 0 0 ;
}
</style>
</head>
<body>
<div id="page">
</div>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Merci pour vos idées
--
Daniel
je découvre XSL et me heurte à un problème qui parait simple. Je voudrai éditer un document avec un fond de page -Logo et coordonnées de l'entreprise en jpg 794px X 1194px-
En utilisant css et html cela fonctionne (avec background et non background-image mais peu importe) mais je n'y arrive pas avec xsl dont voici le source. De ce que j'ai compris, ce source devrait afficher deux fois l'image, une fois avec <body> et une fois avec le tag <div> Et pourtant rien .
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output encoding="UTF-8" method="html" doctype-public="-//W3C//DTD HTML 4.0 Transitional" doctype-system="http://www.w3.org/TR/REC-html40" indent="yes"/>
<xsl:template match="/">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" encoding="UTF-8"> </meta>
<html>
<head>
<title>Essai CSS</title>
<style type="text/css">
body
{
background: url("/home/moi/FR/FondPage.jpg") no-repeat 0 0 ;
height 1193px ;
width 794px ;
}
div#page
{
background: url("/home/moi/FondPage.jpg") no-repeat 0 0 ;
}
</style>
</head>
<body>
<div id="page">
</div>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Merci pour vos idées
--
Daniel