css text align right

Right align a paragraph of text using the text-align css property

Right align this paragraph

Code

<style>
#mypara {
text-align: right;
}
</style>

<p id="mypara">Right align this paragraph</p>