HTML 5 验证器输出 p 内跨度的错误
我遇到了一个奇怪的错误:
问题是我之前在 div 中使用过 span - in事实上,根据 W3C,您可以在所谓的“短语内容”(段落内级别,这显然是 p 元素的全部内容),当然除非我误解了某些内容。
它不会破坏网站,但我希望验证该文档。
可以在此处找到该视图的源代码(我正在使用 Codeigniter):https://gist.github。 com/1688702
这是 W3C 验证器输出的唯一错误。
有什么想法吗?也许有办法解决或规避这个问题?
I'm having a strange error:
The thing is that I've used spans inside divs before - in fact, according to the W3C, you can use span tags inside what's called "Phrasing Content" (the intra-paragraph level, which obviously the p element is all about), unless of course I'm misunderstanding something.
It doesn't break the website, but I'd like the document to validate.
The source code for the view (I'm using Codeigniter) can be found here: https://gist.github.com/1688702
That's the only error the W3C validator outputs.
Any thoughts? Perhaps a way to fix or circumvent this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您在第 74 行写了 spam,而不是 span。
You wrote spam instead of span on line 74.
错字。错误消息中显示的是
spam
,而不是span
。Typo. It says
spam
, notspan
, in the error message.