XHTML 标记问题

发布于 2024-08-22 08:29:14 字数 484 浏览 6 评论 0原文

我的模板包括以下内容:

      <h1 style="height: 80px;" /><img border="0" src="/somemoduledirectoryhere/Headline.ashx?c=sometexthere&amp;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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

人生百味 2024-08-29 08:29:14

你正在自动关闭 H1 标签

删除正斜杠:

<h1 style="height: 80px;" />

所以它

<h1 style="height: 80px;">

You're self closing the H1 tag

Remove the forward slash in:

<h1 style="height: 80px;" />

so its

<h1 style="height: 80px;">
怪我鬧 2024-08-29 08:29:14
<h1 style="height: 80px;" />
                          ^

删除自结束标记语法。

<h1 style="height: 80px;" />
                          ^

Remove the self-closing tag syntax.

狂之美人 2024-08-29 08:29:14

在第一行中,您自动关闭 h1

<h1 style="height: 80px;" />

应该是

<h1 style="height: 80px;">

In first line, you self-close h1:

<h1 style="height: 80px;" />

should be

<h1 style="height: 80px;">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文