リスト3:社員番号を太字で表示するスタイルシート~members-b.xsl


<?xml version="1.0" encoding="Shift_JIS" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl" xml:lang="ja">

<xsl:template match="/">
<HTML lang="ja">
<TITLE>社員名簿 -- 社員番号を太字で表示</TITLE>
<BODY>
    <xsl:apply-templates select="//*" />
</BODY>
</HTML>
</xsl:template>

<xsl:template match="番号">
    <DIV>
    <B>社員番号:
      <xsl:value-of/>
    </B>
    </DIV>
</xsl:template>

<xsl:template match="氏名">
    <FONT size="3">
      <xsl:value-of/>
    </FONT>
</xsl:template>

<xsl:template match="所属">
    <FONT size="3">
      <xsl:value-of/>
    </FONT>
</xsl:template>
<xsl:template match="役職">
    <FONT size="3">
      <xsl:value-of/>
    </FONT>
</xsl:template>
</xsl:stylesheet>


本文へ戻る