在 XHTML 1.0 Strict 中,哪些标签可以自关闭,哪些标签必须有关闭标签?

发布于 2024-10-25 16:43:49 字数 179 浏览 0 评论 0原文

在 XHTML 1.0 Strict 中,哪些标签可以自关闭,哪些标签必须有关闭标签?

示例:

<br/>
<input />

是否有某些标签必须有结束标签、可以自关闭或者任何一种方式都可以在 XHTML 1.0 Strict 中工作?

Which tags are can be self closing and which ones must have a closing tag in XHTML 1.0 Strict?

Example:

<br/>
<input />

Are there certain tags that must have a closing tag, can be self closing, or eigther way works in XHTML 1.0 Strict?

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

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

发布评论

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

评论(2

誰認得朕 2024-11-01 16:43:49

XHTML 1.0 严格 DTD(即 ),是一个 空元素 且“必须有结束标签或开始标签必须以 /> 结尾。”即basemetalinkhrbrparamimgareainput。每个其他元素都必须有一个结束标记。

Every element, that’s content model is EMPTY in the XHTML 1.0 Strict DTD (i.e. <!ELEMENT element-name EMPTY>), is an empty element and “must either have an end tag or the start tag must end with />.” Namely it’s base, meta, link, hr, br, param, img, area, and input. Every other element must have an end tag.

忱杏 2024-11-01 16:43:49

您询问的是“空元素”,包括


> <输入/> > <元/>>
可以全部在单个标签中关闭。应包含文本或子元素的非空元素在技术上可以通过这种方式关闭,如果它们没有子元素或文本,但您不应该这样做。例如

不应该是

但可以通过严格的验证。

http://www.w3.org/TR/xhtml1/#guidelines

You are asking about "EMPTY Elements" including <hr /> <input /> <img /> <meta /> <link /> which can all be closed in a single tag. Non-empty elements which should contain text or sub-elements could technically be closed this way if they have no child or text but you are not supposed to do it. For example <p></p> should not be <p /> but that could pass strict validation.

http://www.w3.org/TR/xhtml1/#guidelines

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