2_1.xml代码如下:<?xml version="1.0" encoding="gb2312"?>
<?xml-stylesheet href="2_1.xsl" type="text/xsl"?>
<ComputerProject>
<Computer>
<cpu>这是CPU</cpu>
<memory>内存</memory>
<hand>硬盘</hand>
<board>主板</board>
</Computer>
</ComputerProject>2_1.xsl代码如下:<?xml version="1.0" encoding="gb2312"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
<title></title>
</head>
<body>
<table border="1" cellpadding="0">
<tbody>
<tr>
<xsl:for-each select="ComputerProject/Computer">
<xsl:apply-templates/>
</xsl:for-each>
</tr>
</tbody>
</table>
</body>
</html>
</xsl:template>
<xsl:template match="cpu">
<td style="font-size:15px;color:blue;">
<xsl:value-of/>
</td>
</xsl:template>
<xsl:template match="memory">
<td style="font-size:16px;color:red;">
<xsl:value-of/>
</td>
</xsl:template>
<xsl:template match="hand">
<td style="font-size:16px;color:green;">
<xsl:value-of/>
</td>
</xsl:template>
<xsl:template match="board">
<td style="font-size:16px;color:red;">
<xsl:value-of/>
</td>
</xsl:template>
</xsl:stylesheet>