Sometimes I use the alignment code like
<p align="left">
or
<p align="right">
even when Iam using Bootstrap frame work.
Because I forget to use bootstrap inbuilt text alignment classes.
Seems this blog post will help me to keep in mind when I start next Website design project.
We can easily align text inside a paragraph and other elements using following text alignment classes.
<p class="text-left">Align me LEFT</p> <p class="text-right">Align me RIGHT</p> <p class="text-center">Align me CENTER</p> <p class="text-justify">Align me JUSTIFIED</p> <p class="text-nowrap">No WRAP</p>