HTML <menu> label Attribute
HTML <menu> tag
Example
A toolbar with two menu buttons on it ("File" and "Edit"), each of which has
a dropdown menu with a series of options:
<menu type="toolbar">
<li>
<menu label="File">
<button type="button" onclick="file_new()">New...</button>
<button type="button" onclick="file_open()">Open...</button>
<button type="button" onclick="file_save()">Save</button>
</menu>
</li>
<li>
<menu label="Edit">
<button type="button" onclick="edit_cut()">Cut</button>
<button type="button" onclick="edit_copy()">Copy</button>
<button type="button" onclick="edit_paste()">Paste</button>
</menu>
</li>
</menu>
Try it yourself »
Browser Support

The label attribute is not currently supported in any of the major browsers.
Definition and Usage
The label attribute specifies a visible label for the menu.
The label attribute is often used to label nested menus within a menu.
Differences Between HTML 4.01 and HTML5
The <menu> element is redefined in HTML5, and the label attribute is new.
Syntax
Attribute Values
| Value |
Description |
| text |
Specifies a visible label for the menu |
HTML <menu> tag
Thank You For Helping Us!
Your message has been sent to W3Schools.
Close [X]