Last Updated: June 11, 2021
ยท
14.42K
ยท moak

Hide placeholder text on focus

For webkit and Firefox

::-webkit-input-placeholder{
    color: #ccc;
    font-style:italic;
} 
:focus::-webkit-input-placeholder{
     text-indent: -999px
}
::-moz-placeholder{
    color: #ccc;
    font-style:italic;
}
:focus::-moz-placeholder{
     text-indent: -999px
}

5 Responses
Add your response

Just used this! Thanks for the tip

over 1 year ago ยท

Cool tip. :)

over 1 year ago ยท

For -moz- there should be two :: like in webkit. Second You could add -ms-input

over 1 year ago ยท

Not working anymore in Firefox. But I just replaced text-indent with color: transparent; and it worked.

over 1 year ago ยท

nice!

over 1 year ago ยท