tailwind text align code example
Example 1: tailwind flex align items center
<div class="flex items-center ...">
<div>1</div>
<div>2</div>
<div>3</div>
</div>
Example 2: tailwind tect align left
Class Properties
text-left text-align: left;
text-center text-align: center;
text-right text-align: right;
text-justify text-align: justify;
Example 3: tailwind text justified
<p class="text-justify ...">Lorem ipsum dolor sit amet ...</p>