Bootstrap 5 Input Text-Align right

Bootstrap 5 Input Text-Align right

我想显示右对齐的输入值。我该怎么做?

You can see in the image what I want.

我的代码如下:

<td style="text-align:center; vertical-align: middle; padding: 8px 18px;">
    <input type="text" class="form-control float-end" id="orden${count}" value="${c}">
</td>

使用text-endclass...

<td style="text-align:center; vertical-align: middle; padding: 8px 18px;">
    <input type="text" class="form-control float-end text-end" id="orden${count}" value="${c}">
</td>