gpt4 book ai didi

Angular Material : How to right align matInput placeholder?

转载 作者:太空狗 更新时间:2023-10-29 17:13:12 29 4
gpt4 key购买 nike

我有这个简单的代码:

<body style="direction: rtl; text-align: right">
<mat-form-field>
<input matInput placeholder="Wanna be rtl" />
</mat-form-field>
</body>

但无论我尝试做什么,占位符都会保持从左到右的状态。有什么办法可以让它右对齐吗?

最佳答案

在表单字段上使用 text-align 将起作用:参见 working StackBlitz example

此解决方案会将占位符和输入文本都右对齐:

<body>
<mat-form-field style="text-align: right">
<input matInput placeholder="Wanna be rtl" />
</mat-form-field>
</body>

结果: enter image description here

如果您只想将占位符右对齐并保持输入文本左对齐,则将 style="text-align: left" 添加到输入中作为如下所示

<body>
<mat-form-field style="text-align: right">
<input matInput placeholder="Wanna be rtl" style="text-align: left"/>
</mat-form-field>
</body>

结果: enter image description here

关于 Angular Material : How to right align matInput placeholder?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51289197/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com