Check out my code snippet below:
HTML:
<input type="text" name="Surname" placeholder="Surname" id="surname">
CSS:
::i-block-chroms, input[placeholder]::-webkit-input-placeholder {
text-align:center;
}
::-webkit-input-placeholder {
text-align:center;
}
input::-webkit-input-placeholder {
text-align:center;
}
I have tried various ways to align the placeholder text center, including adding text-align:center; directly to the input field, but unfortunately, I have not been successful. Unsure of what else to try at this point.