Just use the text-align styles to set, right, left, or center. You can use padding
to give space within input
, in this example I put 5px down and up, and 15px right / left.
See the example
<input type="text" style="text-align: left; padding: 5px 15px;" placeholder="esquerda">
<input type="text" style="text-align: center; padding: 5px 15px" placeholder="centro">
<input type="text" style="text-align: right; padding: 5px 15px" placeholder="direita">