S=Strict, T=Transitional, F=Frameset这是关于HTML属性的东西。

解决方案 »

  1.   

    These are three XHTML DTDs. A DTD specifies the syntax of a web page in SGML and are used by SGML applications like HTML to specify rules for documents of a particular type, including a set of elements and entity declarations.Simply speaking it will tell to which rules your below HTML comply with and XML parser will validate your contents against that DTD.Hope it helps.//Ali
      

  2.   

    http://www.w3school.com.cn/xhtml/xhtml_dtd.asp
      

  3.   

    3种文档类型声明
    •DTD 规定了使用通用标记语言(SGML)的网页的语法。
    •诸如 HTML 这样的通用标记语言应该使用 DTD 来规定应用于某种特定文档中的标签的规则,这些规则包括一系列的元素和实体的声明。
    •在通用标记语言(SGML)的文档类型声明或 DTD 中,XHTML 被详细地进行了描述。
    •XHTML DTD 使用精确的可被计算机读取的语言来描述合法的 XHTML 标记的语法和句法。
    存在三种XHTML文档类型:
    •STRICT(严格类型)
    •TRANSITIONAL(过渡类型)
    •FRAMESET(框架类型)XHTML 1.0 规定了三种 XML 文档类型,以对应上述三种 DTD。XHTML 1.0 Strict
    <!DOCTYPE htmlPUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">在此情况下使用:需要干净的标记,避免表现上的混乱。请与层叠样式表配合使用。XHTML 1.0 Transitional
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">在此情况下使用:当需要利用 HTML 在表现上的特性时,并且当需要为那些不支持层叠样式表的浏览器编写 XHTML 时。XHTML 1.0 Frameset
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">在此的情况下使用:需要使用HTML框架将浏览器窗口分割为两部分或更多框架时。
      

  4.   

    XHTML 1.0 Strict
    严格型
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> Use this when you want really clean up, free of presentational clutter. Use this together with Cascading Style Sheets.
    当你想要整洁干净的标记,避免表现层的混乱,把它和CSS一起使用XHTML 1.0 Transitional
    过渡型
    <!DOCTYPE html
    PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Use this when you need to take advantage of HTML's presentational features and when you want to support browsers that don't understand Cascading Style Sheets.
    当你需要充分利用HTML的表现层的特性或者当你想支持那些不支持CSS的浏览器的时候你可以使用过渡型。 XHTML 1.0 Frameset
    <!DOCTYPE html
    PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> Use this when you want to use HTML Frames to partition the browser window into two or more frames.
    当你使用HTML框架把一个浏览器窗口分割成两个或多个时候使用框架型结构