Hide a value or text from the HTML Input control

16.3k Views Asked by At

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

1

There are 1 best solutions below

2
Srikanth Reddy On BEST ANSWER

Try this solution

you can set text color to transparent

 input {
    color: transparent;
}