我正在尝试插入背景图像并拥有它,以便它不会重复自身并且图像居中。这是我使用的 XSL 编码:
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/countries">
<html>
<body background ="bg_locale.jpg">
<font color="white">
<xsl:for-each select="country">
<xsl:value-of select="countryname"/><br/>
</xsl:for-each>
</font>
</body>
</html>
</xsl:template>
</xsl:stylesheet>