Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

align text label to right bootstrap

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

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

.float-right {
    float: right;
}

But that not working for me

enter image description here

>Solution :

use below css for label

label {
    text-align:right;
    width:100%;
}
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading