I am trying to make the placeholder text look exactly like the actual text being entered into the form field.
The first field is showing placeholder text. Looks like gray text.
The second field is showing text entered into the field. Looks more black.
Here is the html code:
<p>Twitter Link</p>
<input type="text" placeholder="http://twitter.com" />
<p>Google+ Link</p>
<input type="text" placeholder="" />
and css code:
::-webkit-input-placeholder {color: #000;}
:-moz-input-placeholder {color: #000;}
::-moz-input-placeholder {color: #000;}
input::-moz-placeholder {color: 000;}
I am mostly having trouble in firefox.