DTD的重要性是什么以及它如何影响网页页面的显示
DTD的重要性是什么以及它如何影响网页运行时页面的显示
What is the importance of DTD and how it affects the display of the web page page at runtime
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如前所述,这会告诉浏览器您所针对的文档的确切类型(例如 HTML 版本)。 特别是某些浏览器具有“怪异模式”和“严格模式”,它们在运行时都会以不同的方式呈现(显示)HTML。
有一篇关于 A List Apart 的 DOCTYPE 文章有点有用,可帮助您选择正确的 DTD。
As mentioned, this tells the browser what exact type of document (eg. HTML version) you are targeting. In particular some browsers have a "quirks mode" and a "strict mode" which both render (display) your HTML differently at runtime.
There is a somewhat useful DOCTYPE article on A List Apart to help you choose the right DTD.
DTD 定义文档类型,特别是您想要定位的 HTML 规范的特定版本。
DTD defines the type of document and in particular the specific version of the HTML spec you intended to target.