Firefox 78: hide urlbar placeholder text
What's the CSS rule for hiding the urlbar placeholder text?
Thank you.
Wybrane rozwiązanie
You can use code like this:
/* URLBAR - placeholder */ #urlbar *|input::placeholder {opacity:.1 !important;} #urlbar *|input:focus::placeholder {opacity:0 !important}Przeczytaj tę odpowiedź w całym kontekście 👍 1
Wszystkie odpowiedzi (2)
Wybrane rozwiązanie
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.