XHTML严格验证

前端之家收集整理的这篇文章主要介绍了XHTML严格验证前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

真的2个问题.为什么这些代码不会对XHTML 1.0 Strict进行验证. XHTML 1.0 Strict是项目要求.

第2行导致问题

document type does not allow element “input” here; missing one of “p”,“h1”,“h2”,“h3”,“h4”,“h5”,“h6”,“div”,“pre”,“address”,“fieldset”,“ins”,“del” start-tag.

PHP" method="post">

对于第2和第3行

document type does not allow element “input” here; missing one of “p”,“del” start-tag.

最佳答案
您需要将表单输入放在< fieldset>中或其他块标记. <输入>元素是内联表单元素,内联元素可能不会出现在块上下文中.尝试

原文链接:https://www.f2er.com/html/426650.html

猜你在找的HTML相关文章