Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

Search Support

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.

Learn More

Firefox 78: hide urlbar placeholder text

  • 2 odgovori
  • 1 ima ovaj problem
  • 7 views
  • Posljednji odgovor poslao 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.

Izabrano rješenje

You can use code like this:

/* URLBAR - placeholder */
#urlbar *|input::placeholder {opacity:.1 !important;}
#urlbar *|input:focus::placeholder {opacity:0 !important}
Pročitajte ovaj odgovor sa objašnjenjem 👍 1

All Replies (2)

more options

Odabrano rješenje

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.