Search code examples
htmlhtml-inputhtmlcontrols

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


Solution

  • Try this solution

    you can set text color to transparent

     input {
        color: transparent;
    }