<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
COMPACT
Show the list in a compact way, taking up less space.
Examples
 |
<MENU>
<LI>The first choice.
<LI>And choice number two.
</MENU>
|
|
 |
|
|
 |
<MENU>
<LI>File1
<LI>File2
</MENU>
<MENU compact>
<LI>File1
<LI>File2
</MENU>
|
|
 |
|