「形式」欄には、そのタグの一般的な使用例を示します。
文中の H2 や e3 などの記号は以下の意味を持ちます。例えば H2/e2/N2 は、HTML2.0 以降、Internet Explorer 2.0 以降、Netscape Navigator 2.0 以降でサポートされていることを示します。(Internet Explorer 1.0 や Netscape Navigator 1.0 については未調査。)
| 記号 | 意味 |
|---|---|
| H |
H2 : HTML2.0
http://www.ietf.org/rfc/rfc1866.txt
H3 : HTML3.2
http://www.w3c.org/TR/REC-html32
H4 : HTML4.01
H4S: HTML4.01 Strict
H4T: HTML4.01 Transitional
H4F: HTML4.01 Frameset
http://www.w3.org/TR/1999/REC-html401-19991224
H5 : HTML5 Working Draft (2011/05/25)
http://www.w3.org/TR/2011/WD-html5-20110525/
|
| e |
e2 : Windows 版 Internet Explorer 2.0 e3 : Windows 版 Internet Explorer 3.0 e4 : Windows 版 Internet Explorer 4.0 e5 : Windows 版 Internet Explorer 5.0 e55: Windows 版 Internet Explorer 5.5 e6 : Windows 版 Internet Explorer 6.0 e7 : Windows 版 Internet Explorer 7 e8 : Windows 版 Internet Explorer 8 e9 : Windows 版 Internet Explorer 9 |
| N |
N2: Windows 版 Netscape Navigator 2.0 N3: Windows 版 Netscape Navigator 3.0 N4: Windows 版 Netscape Communicator 4.0 N6: Windows 版 Netscape 6.0 N7: Windows 版 Netscape 7.0 |
| Fx |
Fx1 : Firefox 1.0 Fx3.5: Firefox 3.5 Fx4 : Firefox 4.0 |
| Op |
Op6 : Opera 6 Op7 : Opera 7 Op8 : Opera 8 Op9 : Opera 9 Op10: Opera 10 Op11: Opera 11 |
| Ch |
Ch1 : Google Chrome 1.0 Ch2 : Google Chrome 2.0 Ch3 : Google Chrome 3.0 Ch4 : Google Chrome 4.0 Ch5 : Google Chrome 5.0 Ch6 : Google Chrome 6.0 Ch7 : Google Chrome 7.0 Ch8 : Google Chrome 8.0 Ch9 : Google Chrome 9.0 Ch10: Google Chrome 10.0 Ch11: Google Chrome 11.0 Ch12: Google Chrome 12.0 Ch13: Google Chrome 13.0 |
| Sa |
Sa1 : Safari 1.0 Sa2 : Safari 2.0 Sa3 : Safari 3.0 Sa4 : Safari 4.0 Sa5 : Safari 5.0 |
| i |
i1: iモード対応HTML 1.0 i2: iモード対応HTML 2.0 i3: iモード対応HTML 3.0 i4: iモード対応HTML 4.0 i5: iモード対応HTML 5.0 http://www.nttdocomo.co.jp/p_s/imode/tag/index.html http://www.w3.org/TR/1998/NOTE-compactHTML-19980209/ |
開始タグ、終了タグの記述が省略可能であるかどうかを示します。例えば、<p>は終了タグが省略可能なので「<p>なんとか</p>」を「<p>なんとか」と記述することができます。この場合、ブラウザが適切な箇所で</p>を補って解釈してくれます。
開始タグを省略可能なものもあります。例えば、<html>、<head>、<body> などは開始タグも終了タグも省略可能です。従って、
<html> <head> <title>タイトル</title> </head> <body> あいうえお </body> </html>
は、単に
<title>タイトル</title> あいうえお
と記述することができます。この場合も、タグは省略されているけれど、要素は省略できないので、ブラウザが適切な個所に <head> などのタグを補って解釈してくれます。
例えば、「DL要素の包含可能要素はDT DD」であるといった場合、<dl>○○</dl> の ○○ の部分には、<dt>〜</dt> または <dd>〜</dd> のみを記述できることを意味します。詳細は「要素の包含関係」を参照してください。
説明の中の見栄えに関する記述は、Windows版の Internet Explorer や、Netscape Navigator での見栄えについて説明しています。Lynx などのテキストブラウザや、i-mode などのブラウザでは見栄えが異なることがありますのでご注意ください。