gpt4 book ai didi

名称中的 CSS 空间和麻烦的 XSLT

转载 作者:太空宇宙 更新时间:2023-11-03 19:39:51 25 4
gpt4 key购买 nike

我正在尝试创建一个列出电影的 XSLT,我正在设置标题的样式以便每个标题都有自己的颜色,然后我使用插值选择标题(XPath?)

这是 XSL 文件:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
<title>Videos</title>
<style>
table, tr, td { border: thin black solid }
th { background-color: #AAFFAA }
.Daredevil { color: red; }

/* Look at those spaces! Hrmphf! */
.Drag Me To Hell { color: green; }
</style>
</head>
<body>
<table>
<tr><th>Movies</th></tr>
<xsl:apply-templates select="//movie"/>
</table>
</body>
</html>
</xsl:template>
<xsl:template match="//movie[not(@title=preceding::movie/@title)]">

<!-- Title should be the one of the titles in the CSS -->
<tr class="{@title}"><td><xsl:value-of select="@title"/></td></tr>

</xsl:template>
</xsl:stylesheet>

但问题是某些电影片名包含空格。我的名字可以有空格吗?如果没有,是否有任何解决方法(除了在 XML 中使用下划线等)?


更新:

好的,我知道这是不可能的。目前我正在使用 translate(@title, ' ', '-') 这在 CSS 名称由 - 分隔时有效。我仍然想知道是否有更好的方法来做到这一点。 :)

最佳答案

class="Drag me to" 创建一个具有三个不同类的元素。

选择器 .Drag.Me.To 将匹配所有三个类的元素。

但是,它会以任何顺序匹配它们,并且不会计算重复值。

关于名称中的 CSS 空间和麻烦的 XSLT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6336766/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com