我们需要在 html 中使用哪种文档类型定义?

发布于 2024-12-23 04:00:02 字数 375 浏览 0 评论 0原文

可能的重复:
html 和 html 中的不同文档类型是什么它们是什么意思?
HTML DTD - 有什么意义?

DTD 有不同类型,例如严格型、过渡型和等等,哪种 DTD 最常用,为什么?

Possible Duplicate:
What are the different doctypes in html and what do they mean?
HTML DTDs - what's the point?

there are different types of DTD like strict, transitional and etc., which DTD is mostly used in common and why?

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

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

发布评论

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

评论(3

胡渣熟男 2024-12-30 04:00:02

您可以使用的最新 html5 兼容文档类型很简单:

<!doctype html>

这应该与所有现代浏览器兼容。

对于 HTML4 文档来说,这并不重要。我曾经选择过渡。

The most recent html5-compatible doctype you can use is simply:

<!doctype html>

This should be compatible with all modern browsers.

For HTML4 document, it doesn't really matter. I used to choose Transitional.

卷耳 2024-12-30 04:00:02

什么是文档类型:

文档类型声明(或 DOCTYPE)是一条指令,
关联特定的 SGML 或 XML 文档(例如网页)
具有文档类型定义 (DTD)(例如,正式的
特定版本 HTML 的定义)。

为什么我们需要 DOC 类型:

如果您没有正确声明特定的 doctype,访问者浏览器必须“猜测”(通常通过应用最宽松的可能 doctype 或自己的“怪异”模式 doctype)在较慢的渲染中。

文档类型比较

过渡与严格文档类型

What is a DOCTYPE:

A Document Type Declaration, or DOCTYPE, is an instruction that
associates a particular SGML or XML document (for example, a webpage)
with a Document Type Definition (DTD) (for example, the formal
definition of a particular version of HTML).

Why we need a DOC type:

If you do not declare a specific doctype correctly a visitors browser must "guess" (usually by applying the loosest possible doctype or a "quirks" mode doctype of its own) resulting in slower rendering.

Comparison of document types

Transitional vs. Strict Doctypes

夏九 2024-12-30 04:00:02

我们主要只使用此 DTD...

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

如果您有任何疑问,请检查以下链接

http://www .w3schools.com/tags/tag_doctype.asp

We mostly use this DTD only...

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

Check the following link if you have any doubts

http://www.w3schools.com/tags/tag_doctype.asp

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