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
Post a Comment