Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

詳しく学ぶ

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

Firefox 78: hide urlbar placeholder text

  • 2 件の返信
  • 1 人がこの問題に困っています
  • 1 回表示
  • 最後の返信者: Yaron

more options

What's the CSS rule for hiding the urlbar placeholder text?

Thank you.

What's the CSS rule for hiding the urlbar placeholder text? Thank you.

選ばれた解決策

You can use code like this:

/* URLBAR - placeholder */
#urlbar *|input::placeholder {opacity:.1 !important;}
#urlbar *|input:focus::placeholder {opacity:0 !important}
この回答をすべて読む 👍 1

すべての返信 (2)

more options

選ばれた解決策

You can use code like this:

/* URLBAR - placeholder */
#urlbar *|input::placeholder {opacity:.1 !important;}
#urlbar *|input:focus::placeholder {opacity:0 !important}
more options

cor-el,

Great. Thank you.