XHTML 标记问题
我的模板包括以下内容:
<h1 style="height: 80px;" /><img border="0" src="/somemoduledirectoryhere/Headline.ashx?c=sometexthere&fc=" alt="anothertexthere" /></h1>
<h2 style="margin-top: 20px;margin-left: 5px;">someheadlinehere</h2>
我在 XHTML 1.0 过渡标记期间收到以下错误。
文档类型不允许此处使用元素“h2”; 缺少“object”、“applet”、“map”、“iframe”、“button”、“ins”、“del”开始标签结束标签之一,
未打开的元素“h1”
请您建议我如何操作解决这两个问题?
谢谢。
my template includes following:
<h1 style="height: 80px;" /><img border="0" src="/somemoduledirectoryhere/Headline.ashx?c=sometexthere&fc=" alt="anothertexthere" /></h1>
<h2 style="margin-top: 20px;margin-left: 5px;">someheadlinehere</h2>
I receive following errors during XHTML 1.0 transitional markup.
document type does not allow element "h2" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag
end tag for element "h1" which is not open
Would you please suggest me how to fix these two problems?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你正在自动关闭 H1 标签
删除正斜杠:
所以它
You're self closing the H1 tag
Remove the forward slash in:
so its
删除自结束标记语法。
Remove the self-closing tag syntax.
在第一行中,您自动关闭
h1
:应该是
In first line, you self-close
h1
:should be