Hide the value of an input in an html5 form

1

I have created a form with html5 but I need to hide the value inserted in a field of the form. That's possible? If possible, how is it done?

The code is basically this:

<form><input type="text" value=""><input type="submit" value="Enviar"></form>
    
asked by Dyn 01.05.2017 в 22:24
source

1 answer

2
  

You can support CSS with color: transparent

.hidden-text-input {
  color: transparent;
}
<input class='hidden-text-input' value='abc'>
    
answered by 02.05.2017 / 01:23
source