0

I'm looking for a way to center the cursor and the text inputted into a form field, just like the search field at WIRED's homepage: https://www.wired.com/

Wired's search form

Thank you for your help already

1 Answers1

1

Add text-align:center; to the inputs' CSS rule. This works the same as centering text on a webpage.

input[type="text"] { text-align:center; }