W3 3.2y
4.0d
NS 3.0y
4.0y
IE 3.0y
4.0y
TV 1.2y
2.1y

<MENU>...</MENU>

Description

A container for a list of menu items.

The WebTV browser renders this element the same as the UL element.

DTD

Note: This element is deprecated, and this DTD fragment is taken from the
      Transitional DTD.

<!ELEMENT MENU - - (LI)+ -(%block;)    -- directory list, menu list -->
<!ATTLIST MENU
  %attrs;                              -- %coreattrs, %i18n, %events --
  compact     (compact)      #IMPLIED
  >
from the HTML 4.0 DTD, "Copyright © W3C, (MIT, INRIA, Keio). All Rights Reserved."

Attributes

Core attributes: class id style title
Internationalization attributes: dir lang
Events: onclick ondblclick onmousedown onmouseup onmouseover onmousemove onmouseout onkeypress onkeydown onkeyup

W3 3.2y
4.0d
NS 3.0n
4.0n
IE 3.0n
4.0n
TV 1.2n
2.1n
COMPACT
Show the list in a compact way, taking up less space.

Examples

Source
<MENU>
<LI>The first choice.
<LI>And choice number two.
</MENU>
 
Result
  • The first choice.
  • And choice number two.
  •  
    Source
    <MENU>
    <LI>File1
    <LI>File2
    </MENU>

    <MENU compact>
    <LI>File1
    <LI>File2
    </MENU>
     
    Result
  • File1
  • File2
  • File1
  • File2
  • Statistics