0
Is there any attribute tag for justify alignment like word processing software and how many align tags?
2 Answers
+ 2
the alignment of what exactly?
For layout and style you should use css and not âtagsâ.
Of interest may be âtext-alignâ or âvertical-alignâ.
if youâre using flexbox, there are rules like âjustify-contentâ, âalign-itemsâ and âalign-selfâ
+ 1
Yes there is,
The align attribute in HTML
They are,
<p align="center"></p>
<p align="left"></p>
<p align="right"></p>
<p align="justify"></p>