Centering a Placeholder and Input Text in a Text Field
This can be used to text-align:center
CSS:
input, input[placeholder] {
text-align: center;
}
Target the browser-specific placeholder pseudo-element like this:
input {
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;
}
<input type="text" style="font-weight:bold;" placeholder="Enter Keyword(s)" />