css text align left
Left align a paragraph of text using the text-align css property
Left align this paragraph
Code
<style>
#mypara {
text-align: left;
}
</style>
<p id="mypara">Left align this paragraph</p>
#mypara {
text-align: left;
}
</style>
<p id="mypara">Left align this paragraph</p>