Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

HTML <menuitem> label Attribute

❮ HTML <menuitem> tag

Example

Specify labels for different <menuitem> elements:

<menu type="context" id="mymenu">
  <menuitem label="Refresh"></menuitem>
  <menuitem label="Twitter"></menuitem>
  <menuitem label="Facebook"></menuitem>
</menu>
Try it Yourself »

Definition and Usage

The required label attribute specifies the name of the command/menu item, as shown to the user.


Browser Support

The numbers in the table specify the first browser version that fully supports the attribute.

Attribute
label Not supported Not supported 8.0 Not supported Not supported

Syntax

<menuitem label="text">

Attribute Values

Value Description
text Specifies the visible label of the menu item

❮ HTML <menuitem> tag