WebKit placeholder text color
<input type="text" id="phone" placeholder="xxx-xxx-xxxx">
::-webkit-input-placeholder {
color: #ccc;
}
Anthony Short shows us how to change the placeholder
text for input
fields in WebKit browsers.
-->
<input type="text" id="phone" placeholder="xxx-xxx-xxxx">
::-webkit-input-placeholder {
color: #ccc;
}
Anthony Short shows us how to change the placeholder
text for input
fields in WebKit browsers.