在 XHTML 1.0 Strict 中,哪些标签可以自关闭,哪些标签必须有关闭标签?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
XHTML 1.0 严格 DTD(即
),是一个 空元素 且“必须有结束标签或开始标签必须以
/>
结尾。”即base
、meta
、link
、hr
、br
、param
、img
、area
和input
。每个其他元素都必须有一个结束标记。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’sbase
,meta
,link
,hr
,br
,param
,img
,area
, andinput
. Every other element must have an end tag.您询问的是“空元素”,包括
可以全部在单个标签中关闭。应包含文本或子元素的非空元素在技术上可以通过这种方式关闭,如果它们没有子元素或文本,但您不应该这样做。例如> <输入/> > <元/>>
不应该是
但可以通过严格的验证。
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