Important Notice: We're experiencing email notification issues. If you've posted a question in the community forums recently, please check your profile manually for responses while we're working to fix this.

On Monday the 3rd of March, around 5pm UTC (9am PT) users may experience a brief period of downtime while one of our underlying services is under maintenance.

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 replies
  • 1 has this problem
  • 5 views
  • Last reply by 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.

Chosen solution

You can use code like this:

/* URLBAR - placeholder */
#urlbar *|input::placeholder {opacity:.1 !important;}
#urlbar *|input:focus::placeholder {opacity:0 !important}
Read this answer in context 👍 1

All Replies (2)

more options

Chosen Solution

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.