如何在输入中对齐文本?

问题描述:

对于所有默认输入,您填写的文本从左侧开始。

For all default inputs, the texts you fill starts on the left. How do you make it start on the right?

使用 text-align 属性:

input { 
    text-align: right; 
}

这将在页面的所有输入中生效。

否则,如果要对齐只有一个输入的文本,请设置内联样式:

This will take effect in all the inputs of the page.
Otherwise, if you want to align the text of just one input, set the style inline:

<input type="text" style="text-align:right;"/>