用于显示路径/目录的语义 HTML 标记?

发布于 2024-10-15 03:22:05 字数 127 浏览 6 评论 0原文

是否有适合标记路径或目录的标签?

例如: user/project/

我已经检查了所有新的 HTML5 标记,但似乎没有一个适合此目的。那么哪一个会接近呢?

Is there any tag that's suited to markup a path or directory?

For example: <path>user/project/</path>

I've checked all new HTML5 tags but there doesn't seem to be one that fits this purpose. So which one would come close?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

我们只是彼此的过ke 2024-10-22 03:22:05

code元素代表一个片段
的计算机代码。这可能是一个 XML
元素名称、文件名、计算机
程序,或任何其他字符串
计算机会识别。

https://www.w3.org/TR/ html51/textlevel-semantics.html#the-code-element

The code element represents a fragment
of computer code. This could be an XML
element name, a filename, a computer
program, or any other string that a
computer would recognize.

https://www.w3.org/TR/html51/textlevel-semantics.html#the-code-element

错爱 2024-10-22 03:22:05

如果它是代码的一部分,您可以使用code.path

如果它是一些示例输出,您可以使用samp.path

如果您想列出这些部分,您可以使用 ol.path 并设置其显示方式的样式:

<ol class="path">
  <li class="dir">user</li>
  <li class="dir">project</li>
<ol>

但如果它只是一个路径,您应该使用 span.path 包装它代码>.

If it's part of code, you could use a code.path.

If it's some sample output you could use samp.path.

If you'd like to list the parts, you could use ol.path and style the way it's displayed:

<ol class="path">
  <li class="dir">user</li>
  <li class="dir">project</li>
<ol>

But if it's just a path, you should wrap it with span.path.

姜生凉生 2024-10-22 03:22:05

不幸的是,HTML 中没有任何相关内容。您可以尝试将其包装在 HTML5 中的

 标记或  中。否则,您可以使用  标记并将其设置为您想要的外观。

Unfortunately there isn't anything in HTML for that. You could try to wrap it in a <pre> tag or <code> in HTML5. Otherwise you can use a <span> tag and style it how you want it to look like.

×眷恋的温暖 2024-10-22 03:22:05

您对此有何看法:

<input type="text" value="user/project/" readonly="readonly" />

一个优点是您可以轻松选择完整路径,而不会意外选择其他文本。另一方面,它不太语义化,因为它是一个表单元素。

What do you think about this:

<input type="text" value="user/project/" readonly="readonly" />

One advantage is that you can easily select the complete path without selecting other text accidentally. On the other hand it's not quite semantic since it's a form element.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文