How to align text right | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to align text right

10th May 2017, 10:13 AM
Farhan
Farhan - avatar
5 Answers
+ 8
align="right"
10th May 2017, 2:19 PM
NimWing Yuan
NimWing Yuan - avatar
+ 7
Another way with css element{ display:flex; justify-content:flex-end; align-items:flex-start; /*Value of justify-content and align-items can be flex-start,center,flex-end*/ } Combine with html... <p style="display:flex;justify-content:flex-end">Your message</p>
10th May 2017, 10:33 AM
Yanothai Chaitawat
Yanothai Chaitawat - avatar
+ 5
in html using: align="right" but html5 using css: text-align:right;
10th May 2017, 10:24 AM
Nithiwat
Nithiwat - avatar
+ 1
you can use text-align like : text-align: right
10th May 2017, 10:20 AM
prakhar dixit
prakhar dixit - avatar
+ 1
thanks
13th May 2017, 5:05 PM
Farhan
Farhan - avatar