Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

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

  • 2 ответа
  • 1 имеет эту проблему
  • 2 просмотра
  • Последний ответ от 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?

Все ответы (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

Изменено Helper7677