简体   繁体   English

如何在右下角的文本框中进行文本对齐?

[英]How to text-align in textbox in right bottom corner?

I want to align a text inside a textbox at bottom right. 我想在右下角的文本框中对齐文本。 I am able to align to right by using 我可以通过使用向右对齐

text-align:right;

but this leaves with some space at bottom. 但这在底部留有一些空间。 I want to achieve what is shown in below image 我想实现下图所示 在此处输入图片说明

You can achieve it using the padding property. 您可以使用padding属性来实现。 See the snippet below. 请参见下面的代码段。 You can try it and adjust the values in this fiddle 您可以尝试一下并调整此小提琴中的值

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM