在普通标签上使用XHTML结束斜杠(/)?

时间:2010-03-03 18:23:52

标签: html xhtml

我只是想知道关闭一个公共标签是否可以接受,例如。一个<span>,它不需要使用XHTML结束斜杠来减少标记。

例如:

<span id='hello'></span>

可以写成

<span id='hello' />

3 个答案:

答案 0 :(得分:4)

不,你不能这样做,span不是自我关闭标签。以下是自闭标签:

<area />
<base />
<basefont />
<br />
<hr />
<input />
<img />
<link />
<meta />

答案 1 :(得分:3)

答案 2 :(得分:3)

emptyself-closing个标签。跨度不是其中之一。

http://justinsomnia.org/2005/12/there-are-only-10-legal-xhtml-empty-tags/