+ 1
How to align text right
5 Antworten
+ 8
align="right"
+ 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>
+ 5
in html using:
align="right"
but html5 using css:
text-align:right;
+ 1
you can use text-align like : text-align: right
+ 1
thanks