How to align texts inside of an input?

后端 未结 7 1153
情深已故
情深已故 2020-12-02 08:58

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

相关标签:
7条回答
  • 2020-12-02 09:42

    Try this in your CSS:

    input {
    text-align: right;
    }
    

    To align the text in the center:

    input {
    text-align: center;
    }
    

    But, it should be left-aligned, as that is the default - and appears to be the most user friendly.

    0 讨论(0)
提交回复
热议问题