所以我有这个包含某些自定义标签的XHTML文档。这是我不想删除的东西。但也不要创建该文件的副本。我面临的问题是这个标签之间的文字正在显示在网页上。我不想显示它们。有办法吗?可以评论或隐藏它们吗?
标签看起来像:
<classifications type="document" guid="9ccfdae0ff1f452b959207547680018b"><classification title="Credit Agreement"><concept match="exact">one | two | three </concept></classification><classification title="Credit Agreement"><concept>one | two | three | four</concept></classification></classifications>
这样的标签遍布XHTML文件。我不想在标签分类之间显示文本。我只需要一个关于在哪里看的方向。我没有任何线索(我也使用sax parers来解析它。所以可能有一种方法是使用sax解析器来评论它或什么?)
答案 0 :(得分:2)
您可以输入CSS规则来隐藏自定义标记。使用display: none
将完全取消可见的页面流。
<html>
<head>
<style>
classifications {
display: none
}
</style>
</head>
<body>
<classifications>This won't show up</classifications>
<div>But this will!</div>
</body>
</html>