我有一个包含颜色和字体大小列的自定义列表,如下所示:
在母版页上,我使用CQ Webpart通过添加样式将列表项显示为选取框:
<xsl:variable name="SafeLinkUrl">
<xsl:call-template name="OuterTemplate.GetSafeLink">
<xsl:with-param name="UrlColumnName" select="'LinkUrl'"/>
</xsl:call-template>
</xsl:variable>
<xsl:variable name="DisplayTitle">
<xsl:call-template name="OuterTemplate.GetTitle">
<xsl:with-param name="Title" select="@Title"/>
<xsl:with-param name="UrlColumnName" select="'LinkUrl'"/>
</xsl:call-template>
</xsl:variable>
<div>
<marquee direction="right" height="30" style="border:solid rgb(2, 174, 139); background: white;">
<xsl:value-of select="$DisplayTitle" />
</marquee >
</div>
现在我想知道如何以xsl格式应用颜色和字体选择?