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.