HTML 输入字段中的文本右对齐

发布于 2024-10-17 04:35:32 字数 295 浏览 1 评论 0原文

我有一个 HTML 标记,其 maxlength 很短,但 value 属性很长。我希望显示的文本显示文本的结束(右侧),而不是开始(左侧)。

<input maxlength=10 value="A really really really long entry goes in here"/>

目前显示:

“A real r”,

而不是我希望它显示:

“es in here”

干杯,

伊恩

I have an HTML tag with a short maxlength but a long value attribute. I'd like the displayed text to show the end (right side) of the text, rather than the start (left side).

<input maxlength=10 value="A really really really long entry goes in here"/>

currently shows:

"A really r"

instead I'd like it to show:

"es in here"

Cheers,

Ian

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

月牙弯弯 2024-10-24 04:35:32

您希望可见区域从右侧开始吗?您可以使用 css 和以下规则 input {direction:rtl;}

rtl 表示从右到左

示例: http://jsbin.com/ilejo4

PS: html 中 maxlength 的值必须用引号引起来,并且您必须设置 < 输入的code>type

Do you want the visible area to start from the right? you can use css and the following rule input {direction:rtl;}

rtl means from right to left

example: http://jsbin.com/ilejo4

PS: the value of maxlength in your html must be wrapped with quotes, also you have to set the type of the input

灼疼热情 2024-10-24 04:35:32

如果只想显示信息,可以在div中放置一个span,在div中写入overflow:hidden、display flex、justify-content: flex-end;

.contenedor{
  width: 100px;
  background-color: black;
  color: white;
  border-radius: 5px;
  display: flex;
  justify-content: flex-end;
  overflow:hidden;
  padding: 5px;
}
<div class="contenedor"><span>12345555555566final</span></div>

If you only want to display information, what you can do is place a span inside a div, in the div write overflow:hidden, display flex, justify-content: flex-end;

.contenedor{
  width: 100px;
  background-color: black;
  color: white;
  border-radius: 5px;
  display: flex;
  justify-content: flex-end;
  overflow:hidden;
  padding: 5px;
}
<div class="contenedor"><span>12345555555566final</span></div>

且行且努力 2024-10-24 04:35:32

style="text-align:right" 添加到输入标记。

Add style="text-align:right" to the input tag.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文