ばけらの HTML リファレンス(未完成)

bakera.jp > 鳩丸リファレンス > ばけらの HTML リファレンス(未完成) > 要素一覧 > menu要素

menu要素

※この要素は HTML4 や XHTML1.0 では非推奨とされています。

要素名バージョン開始タグ終了タグ分類/親中身
menu2.0, 2.x, 3.2, (4.0), (X1.0)必須必須%list;(li)+ -(%block;)
属性名バージョン属性値既定値備考
compact3.2, (4.0)(compact)#IMPLIEDreduced interitem spacing

共通属性 …… %coreattrs;, %i18n;, %events;

menuの解説

メニューリストを作ります。ul要素と似ていますが、頭に印がつかず、各項目が一行で表示されます。

RFC1866では以下のように解説されていました。

The <MENU> element is a list of items with typically one line per item. The menu list style is typically more compact than the style of an unordered list.

The content of a <MENU> element is a sequence of <LI> elements. Nested block elements are not allowed in the content of <MENU> elements. For example:

<MENU>

<LI>First item in the list.

<LI>Second item in the list.

<LI>Third item in the list.

</MENU>

以上、RFC1866 5.6.4. Menu List: MENU より

……と言いたいところなのですが、この要素も dir要素同様、ほとんどのブラウザは ul と同じように表示してしまいます。

この要素も非推奨です。メニューリストを実現するためには、スタイルシートを使って頭の印を消しましょう。ul に list-style: none を指定するなどすれば対応できます。

最近の日記

関わった本など