Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

Learn More

How do I disable (disappear) menuitem labels that have "..." suffix appended to them?

  • 2 réponses
  • 1 a ce problème
  • 2 vues
  • Dernière réponse par Helper7677

more options

This works in css

menuitem[label="New Window"] { display: none !important; }

to get rid of labels but when I try to get rid of something with "..." at the end such as "Print..." it won't work!

What is wrong?

This works in css menuitem[label="New Window"] { display: none !important; } to get rid of labels but when I try to get rid of something with "..." at the end such as "Print..." it won't work! What is wrong?

Toutes les réponses (2)

more options

The three dots are one ellipsis character: …

It is usually better to use the IDs of context menu items: #menu_print instead of menuitem[label="Print…"]

See also http://kb.mozillazine.org/kb.mozillazine.org/Chrome_element_names_and_IDs

more options

Modifié le par Helper7677