Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Hide text placeholder Reply To: [Solved] Hide text placeholder

#204319
Paulie_D
Member

First choice.

Don’t put it in the HTML in the first place.

<input type="text" name="search" value="">

Second Choice

Color it invisible

::-webkit-input-placeholder {
   color:transparent;
}

:-moz-placeholder { /* Firefox 18- */
   color:transparent; 
}

::-moz-placeholder {  /* Firefox 19+ */
   color:transparent; 
}

:-ms-input-placeholder {  
   color:transparent;
}

http://codepen.io/Paulie-D/pen/eNyGoV