【问题标题】:How to text-align in textbox in right bottom corner?如何在右下角的文本框中进行文本对齐?
【发布时间】:2017-01-17 17:08:26
【问题描述】:

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

向右对齐
text-align:right;

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

【问题讨论】:

    标签: javascript html css textbox text-align


    【解决方案1】:

    您可以使用padding 属性来实现它。请参阅下面的 sn-p。你可以试试调整this fiddle中的值

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

    【讨论】:

    • 文本框的默认填充是什么?
    • IDK,它可能取决于浏览器,但填充、边距等内容最好手动设置,而不是依赖默认值。
    猜你喜欢
    • 2015-02-15
    • 2011-10-12
    • 2010-09-15
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2022-06-10
    • 1970-01-01
    • 2015-07-12
    相关资源
    最近更新 更多