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
>Solution :
use below css for label
label {
text-align:right;
width:100%;
}
