Input input box starts from the right, and the cursor moves to the left

Before setting

Cursor is on the left

Please add image description

<input type="number" placeholder="请输入分润数量" placeholder-class="shareprofit_placeholder_num"
v-model="money">

After setting

Cursor is on the right

Please add image description

<input type="number" placeholder="请输入分润数量" placeholder-class="shareprofit_placeholder_num"
v-model="money" style="text-align: right; direction: rtl;">

To set the input style

Add these two styles to the input and it will be ok

.identity-input {
    
    
  text-align: right;
  direction: rtl;
}

Reprinted from the boss

Guess you like

Origin blog.csdn.net/m0_49714202/article/details/132829477