Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hide a value or text from the HTML Input control

How to hide a text or value from a html inputfield without set to hidden control. I want to the textbox keep on visible but the text/value is hide. Is possible?

Thank You

like image 298
MFBM Avatar asked Jun 16 '26 00:06

MFBM


1 Answers

Try this solution

you can set text color to transparent

 input {
    color: transparent;
}
like image 80
Srikanth Reddy Avatar answered Jun 17 '26 15:06

Srikanth Reddy