Reputation: 39
Would that be possible?
I mean to have a placeholder centered but when I insert a text it will be aligned left???
Upvotes: 1
Views: 740
Reputation: 3143
::-webkit-input-placeholder {
text-align: center;
}
::-webkit-input-placeholder {
text-align: center;
}
:-moz-placeholder { /* Firefox 18- */
text-align: center;
}
::-moz-placeholder { /* Firefox 19+ */
text-align: center;
}
:-ms-input-placeholder {
text-align: center;
}
Upvotes: 3