How can I centre the input field\'s placeholder\'s alignment in a html form?
I am using the following code, but it doesn\'t work:
CSS ->
inpu
It works fine for my needs, you should check compatibility for your browser, I didn't have issues because i didn't care for backward compatibility
.inputclass::-webkit-input-placeholder {
text-align: center;
}
.inputclass:-moz-placeholder { /* Firefox 18- */
text-align: center;
}
.inputclass::-moz-placeholder { /* Firefox 19+ */
text-align: center;
}
.inputclass:-ms-input-placeholder {
text-align: center;
}