Is it possible to hide the text in a textbox? -


i've searched online, can't find answer, not sure if possible. possible hide text in text box, not actual text box?

thanks.

your question vague; assume mean html textbox. , when hide, assume want non-visible opposed (for example) moving value of textbox <input type ="hidden">.

yes, can css

just set color same textbox background.

so, assuming textbox background colour white,

<input type="text" class="whitetext" /> 

and css simply

.whitetext {     color:#fff; } 

Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -