Im using the HTML5 placeholder attribute to enter text. I can center the text the user enters, but not the placeholder text for the iPhone.
Ive tried the following:
input::-webkit-input-placeholder,
input:-moz-placeholder,
::-webkit-input-placeholder,
:-moz-placeholder,
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder,
input:-moz-placeholder, textarea:-moz-placeholder,
{
text-align:center;
}
Evans source
share