![Firefox logo](https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/products/2020-04-14-08-36-13-8dda6f.png)
Firefox 78: hide urlbar placeholder text
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)
選擇的解決方法
You can use code like this:
/* URLBAR - placeholder */ #urlbar *|input::placeholder {opacity:.1 !important;} #urlbar *|input:focus::placeholder {opacity:0 !important}
cor-el,
Great. Thank you.