IE 不使用怪异模式需要的最低 doctype 是什么?

发布于 2024-10-09 08:25:28 字数 315 浏览 4 评论 0原文

我正在为 SharePoint 2007 进行开发,但我漂亮的代码正在被破坏,可能是由 SharePoint 围绕我的内容编辑器 Web 部件生成的代码所破坏。我的理解是,由于在 SharePoint 将代码发送到浏览器之前没有进行“顶级”文档类型声明,因此 Internet Explorer 被迫以怪异模式呈现页面。因此,整个页面的渲染不考虑某些 CSS 声明,并且我的页面看起来是错误的。

我希望说服当局相信这个问题值得解决,但我想我需要能够告诉他们我想要什么......

那么,当我用 XHTML 编写时,什么文档类型最有效(严格)使用 CSS2 但我的代码周围的东西不严格?

I am developing for SharePoint 2007 and my pretty code is being broken, presumably by code SharePoint generates around my Content Editor web-part. My understanding is, because there is no "top level" doctype declaration made before SharePoint sends the code to the browser, Internet Explorer is forced to render the page in quirks mode. Thus, the entire page is rendered without respecting certain CSS declarations and my page looks wrong.

I have hopes of convincing the powers that be that this issue is worth fixing, but I figure I need to be able to tell them what I want...

So, what doctype would work best when I'm writing in XHTML (strict) with CSS2 but the stuff surrounding my code is not strict?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

往昔成烟 2024-10-16 08:25:28
<!DOCTYPE html>

这会将您的文档声明为 HTML5,并且 HTML5 明确定义了浏览器应如何处理损坏的代码,以便您的结果在所有浏览器上看起来应该都是一样的。

<!DOCTYPE html>

This declares your document as HTML5, and HTML5 clearly defines how browsers should handle broken code so your result should look the same on all browsers.

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