How can I add padding-right to an input type=“number” when aligning right?

前端 未结 4 1589
-上瘾入骨i
-上瘾入骨i 2021-01-03 19:00

I can\'t believe I haven\'t been able to find anything about this problem.

In my new project the future user will have a column with some input type=\"number\"

4条回答
  •  灰色年华
    2021-01-03 19:08

    Left align the field in CSS

    [type="number"] {
      text-align: right;
      direction: rtl;
    }

    As suggested by @Pedro Pam

提交回复
热议问题