0

Is it a correct, quick starting point to read the actual plaintexts that DTDs contain like the following, for a human-readable reference of all valid tags and properties for each specific DOCTYPE?

DTD for XHTML 1.0 Transitional

It seems to me that it becomes sort of a down-to-earth reference by doing so, but does it tell me "at run time" everything that is valid for a DOCTYPE, and as well to the browser program?




After that, what is a better reference? Where are the actual DOCTYPE standards, or are they the same as the general HTML standards? DOM level standards? W3Schools? Some other manual like "The HTML Reference Library 4.0" but for "newer" DOCTYPEs/HTML?

4

1 に答える 1

1

DTD は、各 DOCTYPE の字句構造を説明するだけで、何の意味論も説明しません<table>。そのためには、HTML 仕様に移動する必要があります。HTML 4.0 仕様はhttp://www.w3.org/TR/html4にあり、HTML5 はhttp://www.w3.org/TR/html5/にあります。

于 2012-09-01T07:27:52.893 に答える