-2

I want to align text label to right Using bootstrap 5 like when i type this code:

<div class="form-floating text-dark text-end float-right">
  <input type="password" class="form-control text-dark" placeholder=" " id="password">
  <label for="floatingInput" class="float-right text-end">كلمة المرور</label>
</div>

The text is start from left I want change it to right

I tried .text-end And type css code

.float-right {
    float: right;
}

But that not working for me

enter image description here

abdooo9
  • 422
  • 1
  • 4
  • 15

1 Answers1

0

use below css for label

label {
    text-align:right;
    width:100%;
}
Fabian S.
  • 2,441
  • 2
  • 24
  • 34