如何在右下角的文本框中text-align?

How to text-align in textbox in right bottom corner?

我想在右下角的文本框中对齐文本。我可以使用

右对齐
text-align:right;

但这会在底部留下一些 space。我想实现下图所示

您可以使用 padding 属性 来实现它。请参阅下面的代码段。你可以试一试,调整this fiddle

中的值

.my-input{
  padding: 6px 8px 0 8px;
  text-align: right;
}
<input type="text" class="my-input">